Skip to content

Commit 13b7c71

Browse files
committed
Update
1 parent f8ce5a8 commit 13b7c71

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/Overview.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -806,15 +806,15 @@ <h2>Crypto interface</h2>
806806
cryptographically strong pseudo-random number generator seeded with truly random values.
807807
</p>
808808
<pre class=idl>
809-
partial interface mixin WindowOrWorkerGlobalScope {
809+
partial interface mixin UniversalGlobalScope {
810810
[SameObject] readonly attribute Crypto crypto;
811811
};
812812

813813
[Exposed=*]
814814
interface Crypto {
815-
[SecureContext] readonly attribute SubtleCrypto subtle;
815+
[Exposed=(Window,Worker), SecureContext] readonly attribute SubtleCrypto subtle;
816816
ArrayBufferView getRandomValues(ArrayBufferView array);
817-
[SecureContext] DOMString randomUUID();
817+
[Exposed=(Window,Worker), SecureContext] DOMString randomUUID();
818818
};
819819
</pre>
820820

0 commit comments

Comments
 (0)