Index: LayoutTests/storage/indexeddb/create-and-remove-object-store-expected.txt |
diff --git a/LayoutTests/storage/indexeddb/create-and-remove-object-store-expected.txt b/LayoutTests/storage/indexeddb/create-and-remove-object-store-expected.txt |
index 4509648dfdc11718138d2e0a06e81686f0f30cab..b244c8fb120089183a9b0859994ece33b88d3f14 100644 |
--- a/LayoutTests/storage/indexeddb/create-and-remove-object-store-expected.txt |
+++ b/LayoutTests/storage/indexeddb/create-and-remove-object-store-expected.txt |
@@ -13,7 +13,7 @@ Expecting exception from db.createObjectStore('tmp') |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'ConstraintError' |
-Exception message: An object store with the specified name already exists. |
+Exception message: Failed to execute 'createObjectStore' on 'IDBDatabase': An object store with the specified name already exists. |
trans = db.transaction(['tmp']) |
trans.objectStore('tmp').get(0) |
PASS event.target.result is undefined. |
@@ -22,25 +22,25 @@ Expecting exception from db.createObjectStore("some os") |
PASS Exception was thrown. |
PASS code is DOMException.INVALID_STATE_ERR |
PASS ename is 'InvalidStateError' |
-Exception message: The database is not running a version change transaction. |
+Exception message: Failed to execute 'createObjectStore' on 'IDBDatabase': The database is not running a version change transaction. |
Trying remove |
Expecting exception from db.deleteObjectStore("some os") |
PASS Exception was thrown. |
PASS code is DOMException.INVALID_STATE_ERR |
PASS ename is 'InvalidStateError' |
-Exception message: The database is not running a version change transaction. |
+Exception message: Failed to execute 'deleteObjectStore' on 'IDBDatabase': The database is not running a version change transaction. |
Trying create with store that already exists |
Expecting exception from db.createObjectStore('tmp') |
PASS Exception was thrown. |
PASS code is DOMException.INVALID_STATE_ERR |
PASS ename is 'InvalidStateError' |
-Exception message: The database is not running a version change transaction. |
+Exception message: Failed to execute 'createObjectStore' on 'IDBDatabase': The database is not running a version change transaction. |
Trying remove with store that already exists |
Expecting exception from db.deleteObjectStore('tmp') |
PASS Exception was thrown. |
PASS code is DOMException.INVALID_STATE_ERR |
PASS ename is 'InvalidStateError' |
-Exception message: The database is not running a version change transaction. |
+Exception message: Failed to execute 'deleteObjectStore' on 'IDBDatabase': The database is not running a version change transaction. |
PASS successfullyParsed is true |
TEST COMPLETE |