Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(116)

Unified Diff: LayoutTests/http/tests/credentialmanager/credentialscontainer-request-basics.html

Issue 1205003002: Credential Management: Implement CredentialRequestOptions. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/modules/credentialmanager/CredentialRequestOptions.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/credentialmanager/credentialscontainer-request-basics.html
diff --git a/LayoutTests/http/tests/credentialmanager/credentialscontainer-request-basics.html b/LayoutTests/http/tests/credentialmanager/credentialscontainer-request-basics.html
index 8fd5d9408e0e56ff10081f265279ef0c5ab0ab1b..b73fe400a093056ccbafb5d7eddfd11f858deea0 100644
--- a/LayoutTests/http/tests/credentialmanager/credentialscontainer-request-basics.html
+++ b/LayoutTests/http/tests/credentialmanager/credentialscontainer-request-basics.html
@@ -35,7 +35,7 @@ function stubRejectionChecker(reason) {
var t = async_test("Verify the basics of request().");
t.step(function () {
navigator.credentials.request({
- federations: [ 'https://example.com/' ]
+ federated: [ 'https://example.com/' ]
}).then(
t.step_func(stubResolverUndefinedChecker.bind(t)),
t.step_func(stubRejectionChecker.bind(t)));
@@ -46,8 +46,8 @@ function stubRejectionChecker(reason) {
var t = async_test("Verify the basics of request().");
t.step(function () {
navigator.credentials.request({
- federations: [ 'https://example.com/' ],
- zeroClickOnly: true
+ federated: [ 'https://example.com/' ],
+ suppressUI: true
}).then(
t.step_func(stubResolverUndefinedChecker.bind(t)),
t.step_func(stubRejectionChecker.bind(t)));
@@ -58,7 +58,7 @@ function stubRejectionChecker(reason) {
var t = async_test("Verify the basics of request().");
t.step(function () {
navigator.credentials.request({
- zeroClickOnly: true
+ suppressUI: true
}).then(
t.step_func(stubResolverUndefinedChecker.bind(t)),
t.step_func(stubRejectionChecker.bind(t)));
« no previous file with comments | « no previous file | Source/modules/credentialmanager/CredentialRequestOptions.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698