Index: LayoutTests/storage/indexeddb/transaction-read-only-expected.txt |
diff --git a/LayoutTests/storage/indexeddb/transaction-read-only-expected.txt b/LayoutTests/storage/indexeddb/transaction-read-only-expected.txt |
index 70a7b846126936a3b5dc70795d5c2367782c8185..08552e555d7ab11bd911e465d5ec2acedf1c41d7 100644 |
--- a/LayoutTests/storage/indexeddb/transaction-read-only-expected.txt |
+++ b/LayoutTests/storage/indexeddb/transaction-read-only-expected.txt |
@@ -15,11 +15,13 @@ Expecting exception from trans.objectStore('store').put('a', 'b') |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'ReadOnlyError' |
+Exception message: A write operation was attempted in a read-only transaction. |
trans = db.transaction('store') |
Expecting exception from trans.objectStore('store').delete('x') |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'ReadOnlyError' |
+Exception message: A write operation was attempted in a read-only transaction. |
trans = db.transaction('store') |
cur = trans.objectStore('store').openCursor() |
PASS !event.target.result is false |
@@ -27,6 +29,7 @@ Expecting exception from event.target.result.delete() |
PASS Exception was thrown. |
PASS code is 0 |
PASS ename is 'ReadOnlyError' |
+Exception message: A write operation was attempted in a read-only transaction. |
PASS successfullyParsed is true |
TEST COMPLETE |