diff --git a/specs/credentialmanagement/index.src.html b/specs/credentialmanagement/index.src.html index c871fc12..5df3410d 100644 --- a/specs/credentialmanagement/index.src.html +++ b/specs/credentialmanagement/index.src.html @@ -625,18 +625,16 @@

get Options

     dictionary CredentialRequestOptions {
-      boolean acceptPasswords = true;
+      boolean excludePasswords = false;
       sequence<USVString> federations;
       boolean suppressUI = false;
     };
   
-
acceptPasswords
+
excludePasswords
- If true, the user agent will return {{LocalCredential}} + If true, the user agent will not return {{LocalCredential}} objects in response to a request. - - ISSUE(w3c/webappsec#249): Anne notes that this should be inversed.
federations
@@ -661,7 +659,7 @@

get Options

       navigator.credentials.get({
-        "acceptPasswords": false,
+        "excludePasswords": true,
         "federations": [ "https://identity.example.com/" ]
       }).then(function (credential) {
         // ...
@@ -675,7 +673,7 @@ 

get Options

       navigator.credentials.get({
-        "acceptPasswords": false,
+        "excludePasswords": true,
         "federations": [ "https://identity.example.com/" ],
         "suppressUI": true
       }).then(function (credential) {