From 1537051d89f1da2064cccf01758cfacce10493da Mon Sep 17 00:00:00 2001 From: Kagami Sascha Rosylight Date: Mon, 21 May 2018 12:59:48 +0900 Subject: [PATCH] use new mixin IDL syntax --- index.src.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/index.src.html b/index.src.html index 62bca63..d2c9423 100644 --- a/index.src.html +++ b/index.src.html @@ -365,8 +365,8 @@

Credential Management Level 1

mechanism in the [=credential chooser=] by providing a friendly name and icon:
-    [NoInterfaceObject, SecureContext]
-    interface CredentialUserData {
+    [SecureContext]
+    interface mixin CredentialUserData {
       readonly attribute USVString name;
       readonly attribute USVString iconURL;
     };
@@ -1116,7 +1116,7 @@ 

Prevent Silent Access

interface PasswordCredential : Credential { readonly attribute USVString password; }; - PasswordCredential implements CredentialUserData; + PasswordCredential includes CredentialUserData; partial dictionary CredentialRequestOptions { boolean password = false; @@ -1444,7 +1444,7 @@

readonly attribute USVString provider; readonly attribute DOMString? protocol; }; - FederatedCredential implements CredentialUserData; + FederatedCredential includes CredentialUserData; dictionary FederatedCredentialRequestOptions { sequence<USVString> providers;