OLD | NEW |
| 1 CONSOLE WARNING: 'DOMStringList.contains()' is deprecated, and will be removed. |
1 Test IndexedDB's IDBObjectStore auto-increment feature. | 2 Test IndexedDB's IDBObjectStore auto-increment feature. |
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-autoincrement.html" | 9 dbname = "objectstore-autoincrement.html" |
9 indexedDB.deleteDatabase(dbname) | 10 indexedDB.deleteDatabase(dbname) |
10 indexedDB.open(dbname) | 11 indexedDB.open(dbname) |
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 PASS cursor.value.a.b.c.id is expected | 81 PASS cursor.value.a.b.c.id is expected |
81 expected = cursor.value.a.b.c.id + 1 | 82 expected = cursor.value.a.b.c.id + 1 |
82 PASS cursor.value.foo is "bar" | 83 PASS cursor.value.foo is "bar" |
83 PASS cursor.value.a.b.c.id is expected | 84 PASS cursor.value.a.b.c.id is expected |
84 expected = cursor.value.a.b.c.id + 1 | 85 expected = cursor.value.a.b.c.id + 1 |
85 PASS count is 4 | 86 PASS count is 4 |
86 PASS successfullyParsed is true | 87 PASS successfullyParsed is true |
87 | 88 |
88 TEST COMPLETE | 89 TEST COMPLETE |
89 | 90 |
OLD | NEW |