File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -800,15 +800,15 @@ <h2>Crypto interface</h2>
800800 cryptographically strong pseudo-random number generator seeded with truly random values.
801801 </p>
802802 <pre class=idl>
803- partial interface mixin WindowOrWorkerGlobalScope {
803+ partial interface mixin UniversalGlobalScope {
804804 [SameObject] readonly attribute Crypto crypto;
805805};
806806
807807[Exposed=*]
808808interface Crypto {
809- [SecureContext] readonly attribute SubtleCrypto subtle;
809+ [Exposed=(Window,Worker), SecureContext] readonly attribute SubtleCrypto subtle;
810810 ArrayBufferView getRandomValues(ArrayBufferView array);
811- [SecureContext] DOMString randomUUID();
811+ [Exposed=(Window,Worker), SecureContext] DOMString randomUUID();
812812};
813813 </pre>
814814
You can’t perform that action at this time.
0 commit comments