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

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

Issue 1317043003: CREDENTIAL: Add 'PasswordCredential::toFormData()' (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@opaque-formdata
Patch Set: webexposed Created 5 years, 3 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 | 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: LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html
diff --git a/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html b/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html
index f96de0b362abb155f45766a1874ba95ef3e7f9ec..96c784c7c200d213e10077245df05ab7beefe087 100644
--- a/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html
+++ b/LayoutTests/http/tests/credentialmanager/credentialscontainer-get-basics.html
@@ -86,14 +86,14 @@ function stubRejectionChecker(reason) {
verify_interface('PasswordCredential', c, {
id: 'string',
name: 'string',
- iconURL: 'string',
- password: 'string'
+ iconURL: 'string'
});
assert_equals(c.id, id);
assert_equals(c.name, name);
assert_equals(c.iconURL, icon);
- assert_equals(c.password, password);
+ assert_true(c.toFormData() instanceof FormData);
+
this.done();
}
« no previous file with comments | « no previous file | LayoutTests/http/tests/credentialmanager/passwordcredential-basics.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698