OLD | NEW |
1 CONSOLE ERROR: line 52: Uncaught Error: This should *NOT* be caught! | 1 CONSOLE ERROR: line 52: Uncaught Error: This should *NOT* be caught! |
| 2 CONSOLE WARNING: 'DOMStringList.contains()' is deprecated, and will be removed. |
2 Ensure that aborted VERSION_CHANGE transactions are completely rolled back | 3 Ensure that aborted VERSION_CHANGE transactions are completely rolled back |
3 | 4 |
4 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 5 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
5 | 6 |
6 | 7 |
7 dbname = "version-change-abort.html" | 8 dbname = "version-change-abort.html" |
8 indexedDB.deleteDatabase(dbname) | 9 indexedDB.deleteDatabase(dbname) |
9 indexedDB.open(dbname) | 10 indexedDB.open(dbname) |
10 PASS trans instanceof IDBTransaction is true | 11 PASS trans instanceof IDBTransaction is true |
11 store = db.createObjectStore('store1') | 12 store = db.createObjectStore('store1') |
(...skipping 10 matching lines...) Expand all Loading... |
22 | 23 |
23 setVersion2Abort() callback | 24 setVersion2Abort() callback |
24 request = indexedDB.open(dbname) | 25 request = indexedDB.open(dbname) |
25 PASS db.version is 1 | 26 PASS db.version is 1 |
26 PASS db.objectStoreNames.contains('store1') is true | 27 PASS db.objectStoreNames.contains('store1') is true |
27 PASS db.objectStoreNames.contains('store2') is false | 28 PASS db.objectStoreNames.contains('store2') is false |
28 PASS successfullyParsed is true | 29 PASS successfullyParsed is true |
29 | 30 |
30 TEST COMPLETE | 31 TEST COMPLETE |
31 | 32 |
OLD | NEW |