summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/indexeddb/transaction-and-objectstore-calls-expected.txt
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/storage/indexeddb/transaction-and-objectstore-calls-expected.txt')
-rw-r--r--LayoutTests/storage/indexeddb/transaction-and-objectstore-calls-expected.txt26
1 files changed, 18 insertions, 8 deletions
diff --git a/LayoutTests/storage/indexeddb/transaction-and-objectstore-calls-expected.txt b/LayoutTests/storage/indexeddb/transaction-and-objectstore-calls-expected.txt
index 36ca01e..3a9d2ed 100644
--- a/LayoutTests/storage/indexeddb/transaction-and-objectstore-calls-expected.txt
+++ b/LayoutTests/storage/indexeddb/transaction-and-objectstore-calls-expected.txt
@@ -5,15 +5,10 @@ On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE
PASS 'webkitIndexedDB' in window is true
PASS webkitIndexedDB == null is false
-webkitIndexedDB.open('name', 'description')
-PASS 'onsuccess' in result is true
-PASS 'onerror' in result is true
-PASS 'readyState' in result is true
-An event should fire shortly...
-
-db = event.result
+webkitIndexedDB.open('transaction-and-objectstore-calls', 'description')
+db = event.target.result
result = db.setVersion('version 1')
-trans = event.result
+trans = event.target.result
Deleted all object stores.
db.createObjectStore('a')
db.createObjectStore('b')
@@ -22,57 +17,72 @@ trans.addEventListener('complete', created, true)
trans = db.transaction(['a'])
trans.objectStore('a')
Expecting exception from trans.objectStore('b')
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
Expecting exception from trans.objectStore('x')
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
trans = db.transaction(['a'])
trans.objectStore('a')
Expecting exception from trans.objectStore('b')
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
Expecting exception from trans.objectStore('x')
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
trans = db.transaction(['b'])
trans.objectStore('b')
Expecting exception from trans.objectStore('a')
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
Expecting exception from trans.objectStore('x')
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
trans = db.transaction(['a', 'b'])
trans.objectStore('a')
trans.objectStore('b')
Expecting exception from trans.objectStore('x')
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
trans = db.transaction(['b', 'a'])
trans.objectStore('a')
trans.objectStore('b')
Expecting exception from trans.objectStore('x')
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
trans = db.transaction([])
trans.objectStore('a')
trans.objectStore('b')
Expecting exception from trans.objectStore('x')
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
trans = db.transaction()
trans.objectStore('a')
trans.objectStore('b')
Expecting exception from trans.objectStore('x')
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
Expecting exception from db.transaction(['x'])
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
Expecting exception from db.transaction(['x'])
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
Expecting exception from db.transaction(['a', 'x'])
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
Expecting exception from db.transaction(['x', 'x'])
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
Expecting exception from db.transaction(['a', 'x', 'b'])
+PASS Exception was thrown.
PASS code is webkitIDBDatabaseException.NOT_FOUND_ERR
PASS successfullyParsed is true