summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/execute-sql-args-expected.txt
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/storage/execute-sql-args-expected.txt')
-rw-r--r--LayoutTests/storage/execute-sql-args-expected.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/LayoutTests/storage/execute-sql-args-expected.txt b/LayoutTests/storage/execute-sql-args-expected.txt
new file mode 100644
index 0000000..0e30b4b
--- /dev/null
+++ b/LayoutTests/storage/execute-sql-args-expected.txt
@@ -0,0 +1,29 @@
+PASS. executeSql(null) did not throw an exception
+PASS. executeSql(undefined) did not throw an exception
+PASS. executeSql(0) did not throw an exception
+PASS. executeSql("") did not throw an exception
+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("", { }) 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("", null, null) did not throw an exception
+PASS. executeSql("", null, undefined) did not throw an exception
+PASS. executeSql("", null, { }) did not throw an exception
+PASS. executeSql("", null, null, null) did not throw an exception
+PASS. executeSql("", null, null, undefined) did not throw an exception
+PASS. executeSql("", null, null, { }) did not throw an exception
+PASS. executeSql() threw an exception as expected.
+PASS. executeSql(throwOnToStringObject) threw an exception as expected.
+PASS. executeSql("", throwOnGetLengthObject) threw an exception as expected.
+PASS. executeSql("", throwOnGetZeroObject) threw an exception as expected.
+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("", null, 0) threw an exception as expected.
+PASS. executeSql("", null, "") threw an exception as expected.
+PASS. executeSql("", null, null, 0) threw an exception as expected.
+PASS. executeSql("", null, null, "") threw an exception as expected.
+