OLD | NEW |
| 1 CONSOLE WARNING: 'openDatabase' in Workers is deprecated. Please switch to Index
ed Database API. |
1 PASS. executeSql(null) did not throw an exception | 2 PASS. executeSql(null) did not throw an exception |
2 PASS. executeSql(undefined) did not throw an exception | 3 PASS. executeSql(undefined) did not throw an exception |
3 PASS. executeSql(0) did not throw an exception | 4 PASS. executeSql(0) did not throw an exception |
4 PASS. executeSql("") did not throw an exception | 5 PASS. executeSql("") did not throw an exception |
5 PASS. executeSql("", null) did not throw an exception | 6 PASS. executeSql("", null) did not throw an exception |
6 PASS. executeSql("", undefined) did not throw an exception | 7 PASS. executeSql("", undefined) did not throw an exception |
7 PASS. executeSql("", []) did not throw an exception | 8 PASS. executeSql("", []) did not throw an exception |
8 PASS. executeSql("", [ "arg0" ]) did not throw an exception | 9 PASS. executeSql("", [ "arg0" ]) did not throw an exception |
9 PASS. executeSql("", { }) did not throw an exception | 10 PASS. executeSql("", { }) did not throw an exception |
10 PASS. executeSql("", { length: 0 }) did not throw an exception | 11 PASS. executeSql("", { length: 0 }) did not throw an exception |
(...skipping 11 matching lines...) Expand all Loading... |
22 PASS. executeSql("", [ throwOnToStringObject ]) threw an exception as expected. | 23 PASS. executeSql("", [ throwOnToStringObject ]) threw an exception as expected. |
23 PASS. executeSql("", 0) threw an exception as expected. | 24 PASS. executeSql("", 0) threw an exception as expected. |
24 PASS. executeSql("", "") threw an exception as expected. | 25 PASS. executeSql("", "") threw an exception as expected. |
25 PASS. executeSql("", null, 0) threw an exception as expected. | 26 PASS. executeSql("", null, 0) threw an exception as expected. |
26 PASS. executeSql("", null, "") threw an exception as expected. | 27 PASS. executeSql("", null, "") threw an exception as expected. |
27 PASS. executeSql("", null, { }) threw an exception as expected. | 28 PASS. executeSql("", null, { }) threw an exception as expected. |
28 PASS. executeSql("", null, null, 0) threw an exception as expected. | 29 PASS. executeSql("", null, null, 0) threw an exception as expected. |
29 PASS. executeSql("", null, null, "") threw an exception as expected. | 30 PASS. executeSql("", null, null, "") threw an exception as expected. |
30 PASS. executeSql("", null, null, { }) threw an exception as expected. | 31 PASS. executeSql("", null, null, { }) threw an exception as expected. |
31 | 32 |
OLD | NEW |