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