Index: LayoutTests/storage/indexeddb/version-change-abort-expected.txt |
diff --git a/LayoutTests/storage/indexeddb/version-change-abort-expected.txt b/LayoutTests/storage/indexeddb/version-change-abort-expected.txt |
deleted file mode 100644 |
index f134334ea96f968c4fdc63bd6e1dbd0c696b6132..0000000000000000000000000000000000000000 |
--- a/LayoutTests/storage/indexeddb/version-change-abort-expected.txt |
+++ /dev/null |
@@ -1,33 +0,0 @@ |
-CONSOLE MESSAGE: line 52: Error: This should *NOT* be caught! |
-Ensure that aborted VERSION_CHANGE transactions are completely rolled back |
- |
-On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". |
- |
- |
-indexedDB = self.indexedDB || self.webkitIndexedDB || self.mozIndexedDB || self.msIndexedDB || self.OIndexedDB; |
- |
-dbname = "version-change-abort.html" |
-indexedDB.deleteDatabase(dbname) |
-indexedDB.open(dbname) |
-PASS trans instanceof IDBTransaction is true |
-store = db.createObjectStore('store1') |
-setVersion1 complete |
-PASS db.version is 1 |
- |
-vcreq = indexedDB.open(dbname, 2) |
-setVersion2() callback |
-PASS db.version is 2 |
-PASS vcreq.transaction instanceof IDBTransaction is true |
-store = db.deleteObjectStore('store1') |
-store = db.createObjectStore('store2') |
-raising exception |
- |
-setVersion2Abort() callback |
-request = indexedDB.open(dbname) |
-PASS db.version is 1 |
-PASS db.objectStoreNames.contains('store1') is true |
-PASS db.objectStoreNames.contains('store2') is false |
-PASS successfullyParsed is true |
- |
-TEST COMPLETE |
- |