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

Unified Diff: LayoutTests/storage/indexeddb/mozilla/readonly-transactions-expected.txt

Issue 19107003: IndexedDB: Log exception messages (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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/mozilla/readonly-transactions-expected.txt
diff --git a/LayoutTests/storage/indexeddb/mozilla/readonly-transactions-expected.txt b/LayoutTests/storage/indexeddb/mozilla/readonly-transactions-expected.txt
index 3712ed872e299d5606ffa4373146c5bbcd21691e..3ac3d4d569b8b768146ebe20d963ccb724b769fb 100644
--- a/LayoutTests/storage/indexeddb/mozilla/readonly-transactions-expected.txt
+++ b/LayoutTests/storage/indexeddb/mozilla/readonly-transactions-expected.txt
@@ -13,36 +13,44 @@ Expecting exception from db.transaction([osName]).objectStore(osName).add({});
PASS Exception was thrown.
PASS code is 0
PASS ename is 'ReadOnlyError'
+Exception message: A write operation was attempted in a read-only transaction.
Expecting exception from db.transaction(osName).objectStore(osName).add({});
PASS Exception was thrown.
PASS code is 0
PASS ename is 'ReadOnlyError'
+Exception message: A write operation was attempted in a read-only transaction.
key1 = 1;
key2 = 2;
Expecting exception from db.transaction([osName]).objectStore(osName).put({}, key1);
PASS Exception was thrown.
PASS code is 0
PASS ename is 'ReadOnlyError'
+Exception message: A write operation was attempted in a read-only transaction.
Expecting exception from db.transaction(osName).objectStore(osName).put({}, key2);
PASS Exception was thrown.
PASS code is 0
PASS ename is 'ReadOnlyError'
+Exception message: A write operation was attempted in a read-only transaction.
Expecting exception from db.transaction([osName]).objectStore(osName).put({}, key1);
PASS Exception was thrown.
PASS code is 0
PASS ename is 'ReadOnlyError'
+Exception message: A write operation was attempted in a read-only transaction.
Expecting exception from db.transaction(osName).objectStore(osName).put({}, key1);
PASS Exception was thrown.
PASS code is 0
PASS ename is 'ReadOnlyError'
+Exception message: A write operation was attempted in a read-only transaction.
Expecting exception from db.transaction([osName]).objectStore(osName).delete(key1);
PASS Exception was thrown.
PASS code is 0
PASS ename is 'ReadOnlyError'
+Exception message: A write operation was attempted in a read-only transaction.
Expecting exception from db.transaction(osName).objectStore(osName).delete(key2);
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

Powered by Google App Engine
This is Rietveld 408576698