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

Unified Diff: third_party/WebKit/LayoutTests/storage/indexeddb/resources/intversion-bad-parameters.js

Issue 1476863003: bindings: Ignores the last undefined arguments when counting the args. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated layout tests. 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/storage/indexeddb/resources/intversion-bad-parameters.js
diff --git a/third_party/WebKit/LayoutTests/storage/indexeddb/resources/intversion-bad-parameters.js b/third_party/WebKit/LayoutTests/storage/indexeddb/resources/intversion-bad-parameters.js
index 3853fc3cabdc7017c1e40957e2725addf26903e3..f871735eb41f5833d77415b7f1199991e02c3804 100644
--- a/third_party/WebKit/LayoutTests/storage/indexeddb/resources/intversion-bad-parameters.js
+++ b/third_party/WebKit/LayoutTests/storage/indexeddb/resources/intversion-bad-parameters.js
@@ -25,7 +25,7 @@ function deleteSuccess(evt) {
evalAndExpectExceptionClass("indexedDB.open(dbname, -1)", "TypeError");
evalAndExpectExceptionClass("indexedDB.open(dbname, 0x20000000000000)", "TypeError");
evalAndExpectExceptionClass("indexedDB.open(dbname, null)", "TypeError");
- evalAndExpectExceptionClass("indexedDB.open(dbname, undefined)", "TypeError");
+ evalAndLog("indexedDB.open(dbname, undefined)");
finishJSTest();
}

Powered by Google App Engine
This is Rietveld 408576698