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

Unified Diff: third_party/WebKit/LayoutTests/storage/websql/execute-sql-args-expected.txt

Issue 2810843002: bindings: Make the sequence conversion code more complaint with WebIDL. (Closed)
Patch Set: Adjust even more tests Created 3 years, 8 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: third_party/WebKit/LayoutTests/storage/websql/execute-sql-args-expected.txt
diff --git a/third_party/WebKit/LayoutTests/storage/websql/execute-sql-args-expected.txt b/third_party/WebKit/LayoutTests/storage/websql/execute-sql-args-expected.txt
index 78fee448eb3d0facb99fe07ce83a9d5f605c97f1..d0b4991818021680405fbc345290899b8cbd0448 100644
--- a/third_party/WebKit/LayoutTests/storage/websql/execute-sql-args-expected.txt
+++ b/third_party/WebKit/LayoutTests/storage/websql/execute-sql-args-expected.txt
@@ -6,8 +6,8 @@ PASS. executeSql("", null) did not throw an exception
PASS. executeSql("", undefined) did not throw an exception
PASS. executeSql("", []) did not throw an exception
PASS. executeSql("", [ "arg0" ]) did not throw an exception
-PASS. executeSql("", { length: 0 }) did not throw an exception
-PASS. executeSql("", { length: 1, 0: "arg0" }) did not throw an exception
+PASS. executeSql("", emptyIterableObject) did not throw an exception
+PASS. executeSql("", singleItemIterableObject) did not throw an exception
PASS. executeSql("", null, null) did not throw an exception
PASS. executeSql("", null, undefined) did not throw an exception
PASS. executeSql("", null, function(){}) did not throw an exception
@@ -22,6 +22,8 @@ PASS. executeSql("", [ throwOnToStringObject ]) threw an exception as expected.
PASS. executeSql("", 0) threw an exception as expected.
PASS. executeSql("", "") threw an exception as expected.
PASS. executeSql("", { }) threw an exception as expected.
+PASS. executeSql("", { length: 0 }) threw an exception as expected.
+PASS. executeSql("", { length: 1, 0: "arg0" }) threw an exception as expected.
PASS. executeSql("", null, 0) threw an exception as expected.
PASS. executeSql("", null, "") threw an exception as expected.
PASS. executeSql("", null, { }) threw an exception as expected.

Powered by Google App Engine
This is Rietveld 408576698