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

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

Issue 2749153005: Make CredentialsContainer#get argument options optional to match the spec (Closed)
Patch Set: Update credentialmanager/idl.html tests after the idl change Created 3 years, 9 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 | third_party/WebKit/LayoutTests/http/tests/credentialmanager/idl.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 0270a9f4c782d7102ce01a2e252c2f2a4e79c4ef..a4531acd1c997aef56405d5d123eb48a2a2f0e08 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
@@ -19,11 +19,11 @@ add_completion_callback(() => {
});
(function() {
- var t = async_test("navigator.credentials.get() (no argument) should throw.");
+ var t = async_test("navigator.credentials.get() with no argument.");
t.step(function () {
navigator.credentials.get().then(
- t.unreached_func(),
- t.step_func_done());
+ t.step_func(stubResolverUndefinedChecker.bind(t)),
+ t.step_func(stubRejectionChecker.bind(t)));
});
}());
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/credentialmanager/idl.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698