Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions spec/Overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -800,13 +800,13 @@ <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=(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();
};
Expand Down