OLD | NEW |
| 1 CONSOLE ERROR: line 1: AbortError: Version change transaction was aborted in upg
radeneeded event handler. |
1 Test the basics of IndexedDB's IDBObjectStore. | 2 Test the basics of IndexedDB's IDBObjectStore. |
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 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.
msIndexedDB || self.OIndexedDB; | 7 indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.
msIndexedDB || self.OIndexedDB; |
7 | 8 |
8 dbname = "objectstore-basics.html" | 9 dbname = "objectstore-basics.html" |
9 indexedDB.deleteDatabase(dbname) | 10 indexedDB.deleteDatabase(dbname) |
10 indexedDB.open(dbname) | 11 indexedDB.open(dbname) |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 The key parameter was provided but does not contain a valid key. | 229 The key parameter was provided but does not contain a valid key. |
229 Expecting exception from storeWithOutOfLineKeys.add({}, null) | 230 Expecting exception from storeWithOutOfLineKeys.add({}, null) |
230 PASS Exception was thrown. | 231 PASS Exception was thrown. |
231 PASS code is 0 | 232 PASS code is 0 |
232 PASS ename is 'DataError' | 233 PASS ename is 'DataError' |
233 Exception message: Failed to execute 'add' on 'IDBObjectStore': The parameter is
not a valid key. | 234 Exception message: Failed to execute 'add' on 'IDBObjectStore': The parameter is
not a valid key. |
234 PASS successfullyParsed is true | 235 PASS successfullyParsed is true |
235 | 236 |
236 TEST COMPLETE | 237 TEST COMPLETE |
237 | 238 |
OLD | NEW |