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

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

Issue 661973002: Credential Manager: JavaScript arguments make more sense in a different order. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git/+/master
Patch Set: Created 6 years, 2 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
Index: LayoutTests/http/tests/credentialmanager/credentialscontainer-notifysignedin-basics.html
diff --git a/LayoutTests/http/tests/credentialmanager/credentialscontainer-notifysignedin-basics.html b/LayoutTests/http/tests/credentialmanager/credentialscontainer-notifysignedin-basics.html
index f4b52bcf3093dbd9af91f0e03652da3b58073abc..5abb2741bb043f93e48092ca9f760784dec4ee21 100644
--- a/LayoutTests/http/tests/credentialmanager/credentialscontainer-notifysignedin-basics.html
+++ b/LayoutTests/http/tests/credentialmanager/credentialscontainer-notifysignedin-basics.html
@@ -12,8 +12,8 @@ function stubRejectionChecker(reason) {
assert_unreached("notifySignedIn() should not reject, but did: " + reason.name);
}
-var local = new LocalCredential('id', 'name', 'https://example.com/avatar.png', 'pencil');
-var federated = new FederatedCredential('id', 'name', 'https://example.com/avatar.png', 'https://federation.net');
+var local = new LocalCredential('id', 'pencil', 'name', 'https://example.com/avatar.png');
+var federated = new FederatedCredential('id', 'https://federation.net', 'name', 'https://example.com/avatar.png');
async_test(function () {
navigator.credentials.notifySignedIn().then(

Powered by Google App Engine
This is Rietveld 408576698