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

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: Better Created 5 years, 1 month 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
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);
philipj_slow 2015/11/17 15:53:58 The CredentialBodyType type isn't nullable, so how
Mike West 2015/11/18 09:12:50 Hey, look at that! The `additionalData` attribute
philipj_slow 2015/11/18 10:00:04 Where? I don't see the nullable change in implemen
this.done();
}

Powered by Google App Engine
This is Rietveld 408576698