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

Unified Diff: third_party/WebKit/LayoutTests/storage/indexeddb/readonly-expected.txt

Issue 2276593002: Support renaming of IndexedDB indexes and object stores. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added tests for create rename in the same aborted transaction. Created 4 years, 3 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: third_party/WebKit/LayoutTests/storage/indexeddb/readonly-expected.txt
diff --git a/third_party/WebKit/LayoutTests/storage/indexeddb/readonly-expected.txt b/third_party/WebKit/LayoutTests/storage/indexeddb/readonly-expected.txt
index ea83e2c8203bcfc1058836b6f806a3ce910929de..564f9191109064b340f57289b310c96630e2a405 100644
--- a/third_party/WebKit/LayoutTests/storage/indexeddb/readonly-expected.txt
+++ b/third_party/WebKit/LayoutTests/storage/indexeddb/readonly-expected.txt
@@ -15,9 +15,6 @@ transaction.db = this
PASS transaction.db is still [object IDBDatabase]
Deleted all object stores.
objectStore = db.createObjectStore('foo');
-trying to set readonly property objectStore.name
-objectStore.name = 'bar'
-PASS objectStore.name is still foo
trying to set readonly property objectStore.keyPath
objectStore.keyPath = 'bar'
PASS objectStore.keyPath is still null
@@ -37,9 +34,6 @@ trying to set readonly property cursor.primaryKey
cursor.primaryKey = Infinity
PASS cursor.primaryKey is still first
index = objectStore.createIndex('first', 'first');
-trying to set readonly property index.name
-index.name = 'bar'
-PASS index.name is still first
trying to set readonly property index.objectStore
index.objectStore = this
PASS index.objectStore is still [object IDBObjectStore]

Powered by Google App Engine
This is Rietveld 408576698