diff --git a/spec/Overview.html b/spec/Overview.html index 8d88155..f5ee6ef 100644 --- a/spec/Overview.html +++ b/spec/Overview.html @@ -800,13 +800,13 @@

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();
 };