OLD | NEW |
| 1 CONSOLE WARNING: 'DOMStringList.contains()' is deprecated, and will be removed. |
1 Regression test for WK82678 - don't commit after a blocked event | 2 Regression test for WK82678 - don't commit after a blocked event |
2 | 3 |
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
4 | 5 |
5 | 6 |
6 dbname = "dont-commit-on-blocked.html" | 7 dbname = "dont-commit-on-blocked.html" |
7 indexedDB.deleteDatabase(dbname) | 8 indexedDB.deleteDatabase(dbname) |
8 indexedDB.open(dbname) | 9 indexedDB.open(dbname) |
9 db.onversionchange = onVersionChange | 10 db.onversionchange = onVersionChange |
10 store = db.createObjectStore('store1') | 11 store = db.createObjectStore('store1') |
(...skipping 23 matching lines...) Expand all Loading... |
34 [Worker] | 35 [Worker] |
35 [Worker] onTransactionComplete | 36 [Worker] onTransactionComplete |
36 PASS [Worker] state is "success" | 37 PASS [Worker] state is "success" |
37 PASS [Worker] Number(db.version) is 2 | 38 PASS [Worker] Number(db.version) is 2 |
38 PASS [Worker] db.objectStoreNames.contains('store1') is true | 39 PASS [Worker] db.objectStoreNames.contains('store1') is true |
39 PASS [Worker] db.objectStoreNames.contains('store2') is true | 40 PASS [Worker] db.objectStoreNames.contains('store2') is true |
40 PASS successfullyParsed is true | 41 PASS successfullyParsed is true |
41 | 42 |
42 TEST COMPLETE | 43 TEST COMPLETE |
43 | 44 |
OLD | NEW |