| 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 c78fccdc8d14ee33989b2010bd976c2f42ed0655..4509648dfdc11718138d2e0a06e81686f0f30cab 100644
|
| --- a/LayoutTests/storage/indexeddb/create-and-remove-object-store-expected.txt
|
| +++ b/LayoutTests/storage/indexeddb/create-and-remove-object-store-expected.txt
|
| @@ -13,6 +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.
|
| trans = db.transaction(['tmp'])
|
| trans.objectStore('tmp').get(0)
|
| PASS event.target.result is undefined.
|
| @@ -21,21 +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.
|
| 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.
|
| 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.
|
| 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.
|
| PASS successfullyParsed is true
|
|
|
| TEST COMPLETE
|
|
|