Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(37)

Unified Diff: LayoutTests/storage/indexeddb/exception-in-event-aborts-expected.txt

Issue 14146002: Remove all generic expected results for which a generic Chromium expected result exists (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/storage/indexeddb/exception-in-event-aborts-expected.txt
diff --git a/LayoutTests/storage/indexeddb/exception-in-event-aborts-expected.txt b/LayoutTests/storage/indexeddb/exception-in-event-aborts-expected.txt
deleted file mode 100644
index dd73c75ff83c500b9ad3f836d584660e41cd1d56..0000000000000000000000000000000000000000
--- a/LayoutTests/storage/indexeddb/exception-in-event-aborts-expected.txt
+++ /dev/null
@@ -1,60 +0,0 @@
-CONSOLE MESSAGE: this exception is expected
-CONSOLE MESSAGE: this exception is expected
-Test exceptions in IDBRequest handlers cause aborts.
-
-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 = "exception-in-event-aborts.html"
-indexedDB.deleteDatabase(dbname)
-indexedDB.open(dbname)
-store = db.createObjectStore('storeName', null)
-store.add({x: 'value', y: 'zzz'}, 'key')
-
-trans = db.transaction(['storeName'], 'readwrite')
-trans.onabort = transactionAborted1
-trans.oncomplete = unexpectedCompleteCallback
-store = trans.objectStore('storeName')
-store.add({x: 'value2', y: 'zzz2'}, 'key2')
-
-event.preventDefault()
-Throwing
-
-PASS Got expected error: 'this exception is expected'
-PASS The transaction was aborted.
-trans = db.transaction(['storeName'], 'readwrite')
-trans.onabort = transactionAborted2
-trans.oncomplete = unexpectedCompleteCallback
-store = trans.objectStore('storeName')
-store.add({x: 'value', y: 'zzz'}, 'key')
-
-event.preventDefault()
-Throwing
-
-PASS Got expected error: 'this exception is expected'
-PASS The transaction was aborted.
-trans = db.transaction(['storeName'], 'readwrite')
-trans.onabort = unexpectedAbortCallback
-trans.oncomplete = transactionCompleted1
-store = trans.objectStore('storeName')
-store.add({x: 'value3', y: 'zzz3'}, 'key3')
-
-event.preventDefault()
-Throwing within a try block
-
-PASS The transaction completed.
-trans = db.transaction(['storeName'], 'readwrite')
-trans.onabort = unexpectedAbortCallback
-trans.oncomplete = transactionCompleted2
-store = trans.objectStore('storeName')
-store.add({x: 'value4', y: 'zzz4'}, 'key4')
-PASS key4 added
-
-PASS The transaction completed.
-
-PASS successfullyParsed is true
-
-TEST COMPLETE
-

Powered by Google App Engine
This is Rietveld 408576698