Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Ms2ger committed Sep 25, 2024
1 parent f8ce5a8 commit 13b7c71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spec/Overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -806,15 +806,15 @@ <h2>Crypto interface</h2>
cryptographically strong pseudo-random number generator seeded with truly random values.
</p>
<pre class=idl>
partial interface mixin WindowOrWorkerGlobalScope {
partial interface mixin UniversalGlobalScope {
[SameObject] readonly attribute Crypto crypto;
};

[Exposed=*]
interface Crypto {
[SecureContext] readonly attribute SubtleCrypto subtle;
[Exposed=(Window,Worker), SecureContext] readonly attribute SubtleCrypto subtle;
ArrayBufferView getRandomValues(ArrayBufferView array);
[SecureContext] DOMString randomUUID();
[Exposed=(Window,Worker), SecureContext] DOMString randomUUID();
};
</pre>

Expand Down

0 comments on commit 13b7c71

Please sign in to comment.