diff --git a/spec/Overview-WebCryptoAPI.xml b/spec/Overview-WebCryptoAPI.xml index 6d4b289..d1f0ab1 100644 --- a/spec/Overview-WebCryptoAPI.xml +++ b/spec/Overview-WebCryptoAPI.xml @@ -853,13 +853,12 @@ of contents, section numbers, certain processing instructions).

Crypto interface

-[NoInterfaceObject,Exposed=(Window,Worker)] -interface GlobalCrypto { +interface mixin GlobalCrypto { readonly attribute Crypto crypto; }; -Window implements GlobalCrypto; -WorkerGlobalScope implements GlobalCrypto; +Window includes GlobalCrypto; +WorkerGlobalScope includes GlobalCrypto; [Exposed=(Window,Worker)] interface Crypto { diff --git a/spec/Overview.html b/spec/Overview.html index 93e89fb..7b435c6 100644 --- a/spec/Overview.html +++ b/spec/Overview.html @@ -20,7 +20,7 @@ -

Web Cryptography API

W3C Editor’s Draft 3 March 2017

Latest Editor’s Draft:
http://w3c.github.io/webcrypto/Overview.html
Latest Published Version:
https://www.w3.org/TR/WebCryptoAPI/
Previous Version:
https://www.w3.org/TR/2014/CR-WebCryptoAPI-20141211/
Editor:
Mark Watson, Netflix <watsonm@netflix.com>
Participate:
We are on GitHub. +

Web Cryptography API

W3C Editor’s Draft 21 December 2017

Latest Editor’s Draft:
http://w3c.github.io/webcrypto/Overview.html
Latest Published Version:
https://www.w3.org/TR/WebCryptoAPI/
Previous Version:
https://www.w3.org/TR/2014/CR-WebCryptoAPI-20141211/
Editor:
Mark Watson, Netflix <watsonm@netflix.com>
Participate:
We are on GitHub.
Send feedback to public-webcrypto@w3.org (archives).
File a bug @@ -52,7 +52,7 @@

Status of this Document

report can be found in the W3C technical reports index at https://www.w3.org/TR/.

- This document is the 3 March 2017 Editor’s Draft of the + This document is the 21 December 2017 Editor’s Draft of the Web Cryptography API specification. Please send comments about this document to @@ -866,13 +866,12 @@

9. Terminology

10. Crypto interface

IDL

-[NoInterfaceObject,Exposed=(Window,Worker)]
-interface GlobalCrypto {
+interface mixin GlobalCrypto {
   readonly attribute Crypto crypto;
 };
 
-Window implements GlobalCrypto;
-WorkerGlobalScope implements GlobalCrypto;        
+Window includes GlobalCrypto;
+WorkerGlobalScope includes GlobalCrypto;
         
 [Exposed=(Window,Worker)]
 interface Crypto {