diff --git a/spec/Overview.html b/spec/Overview.html index 357ab22..bd17a95 100644 --- a/spec/Overview.html +++ b/spec/Overview.html @@ -806,15 +806,15 @@

Crypto interface

cryptographically strong pseudo-random number generator seeded with truly random values.

-partial interface mixin WindowOrWorkerGlobalScope {
+partial interface mixin UniversalGlobalScope {
   [SameObject] readonly attribute Crypto crypto;
 };
 
-[Exposed=(Window,Worker)]
+[Exposed=*]
 interface Crypto {
-  [SecureContext] readonly attribute SubtleCrypto subtle;
+  [Exposed=(Window,Worker), SecureContext] readonly attribute SubtleCrypto subtle;
   ArrayBufferView getRandomValues(ArrayBufferView array);
-  [SecureContext] DOMString randomUUID();
+  [Exposed=*, SecureContext] DOMString randomUUID();
 };