| OLD | NEW |
| 1 Test IndexedDB's webkitIDBObjectStore.deleteObjectStore(). | 1 Test IndexedDB's webkitIDBObjectStore.deleteObjectStore(). |
| 2 | 2 |
| 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". | 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
". |
| 4 | 4 |
| 5 | 5 |
| 6 webkitIndexedDB.open('name') | 6 webkitIndexedDB.open('name') |
| 7 PASS 'onsuccess' in result is true | 7 PASS 'onsuccess' in result is true |
| 8 PASS 'onerror' in result is true | 8 PASS 'onerror' in result is true |
| 9 PASS 'readyState' in result is true | 9 PASS 'readyState' in result is true |
| 10 An event should fire shortly... | 10 An event should fire shortly... |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 PASS 'result' in event is false | 114 PASS 'result' in event is false |
| 115 PASS 'code' in event is true | 115 PASS 'code' in event is true |
| 116 PASS 'message' in event is true | 116 PASS 'message' in event is true |
| 117 PASS 'source' in event is true | 117 PASS 'source' in event is true |
| 118 PASS event.source != null is true | 118 PASS event.source != null is true |
| 119 PASS 'onsuccess' in event.target is true | 119 PASS 'onsuccess' in event.target is true |
| 120 PASS 'onerror' in event.target is true | 120 PASS 'onerror' in event.target is true |
| 121 PASS 'readyState' in event.target is true | 121 PASS 'readyState' in event.target is true |
| 122 PASS event.target.readyState is event.target.DONE | 122 PASS event.target.readyState is event.target.DONE |
| 123 | 123 |
| 124 PASS event.code is 2 | 124 PASS event.code is webkitIDBDatabaseException.NOT_FOUND_ERR |
| 125 PASS event.source.indexNames.contains('indexName') is false | 125 PASS event.source.indexNames.contains('indexName') is false |
| 126 PASS successfullyParsed is true | 126 PASS successfullyParsed is true |
| 127 | 127 |
| 128 TEST COMPLETE | 128 TEST COMPLETE |
| 129 | 129 |
| OLD | NEW |