| OLD | NEW |
| (Empty) |
| 1 CONSOLE WARNING: 'openDatabaseSync' is deprecated. Please switch to Indexed Data
base API. | |
| 2 Test various inputs to executeSql(). | |
| 3 PASS: executeSql("") did not throw an exception. | |
| 4 PASS: executeSql("", null) did not throw an exception. | |
| 5 PASS: executeSql("", undefined) did not throw an exception. | |
| 6 PASS: executeSql("", []) did not throw an exception. | |
| 7 PASS: executeSql("", [ "arg0" ]) did not throw an exception. | |
| 8 PASS: executeSql("", { }) did not throw an exception. | |
| 9 PASS: executeSql("", { length: 0 }) did not throw an exception. | |
| 10 PASS: executeSql("", { length: 1, 0: "arg0" }) did not throw an exception. | |
| 11 PASS: executeSql() threw an exception as expected. | |
| 12 PASS: executeSql(null) threw an exception as expected. | |
| 13 PASS: executeSql(undefined) threw an exception as expected. | |
| 14 PASS: executeSql(0) threw an exception as expected. | |
| 15 PASS: executeSql(throwOnToStringObject) threw an exception as expected. | |
| 16 PASS: executeSql("", throwOnGetLengthObject) threw an exception as expected. | |
| 17 PASS: executeSql("", throwOnGetZeroObject) threw an exception as expected. | |
| 18 PASS: executeSql("", [ throwOnToStringObject ]) threw an exception as expected. | |
| 19 PASS: executeSql("", 0) threw an exception as expected. | |
| 20 PASS: executeSql("", "") threw an exception as expected. | |
| 21 | |
| OLD | NEW |