Chromium Code Reviews

Unified Diff: third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html

Issue 1446963002: CREDENTIAL: Teach Fetch to handle PasswordCredential objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@opaque
Patch Set: webexposed Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/credentialmanager/passwordcredential-basics.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html b/third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html
index 96c784c7c200d213e10077245df05ab7beefe087..062f4ae33fc1c8fafc260e71754499b97d7dbfb6 100644
--- a/third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html
+++ b/third_party/WebKit/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html
@@ -92,7 +92,9 @@ function stubRejectionChecker(reason) {
assert_equals(c.id, id);
assert_equals(c.name, name);
assert_equals(c.iconURL, icon);
- assert_true(c.toFormData() instanceof FormData);
+ assert_equals(c.idName, 'username');
+ assert_equals(c.passwordName, 'password');
+ assert_equals(c.additionalData, null);
this.done();
}
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/credentialmanager/passwordcredential-basics.html » ('j') | no next file with comments »

Powered by Google App Engine