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

Unified Diff: third_party/WebKit/LayoutTests/storage/indexeddb/resources/readonly.js

Issue 2276593002: Support renaming of IndexedDB indexes and object stores. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added test coverage for the (slightly incorrect) behavior in strict mode when our flag is not enabl… 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/resources/readonly.js
diff --git a/third_party/WebKit/LayoutTests/storage/indexeddb/resources/readonly.js b/third_party/WebKit/LayoutTests/storage/indexeddb/resources/readonly.js
index 195ccaa550088a29b8ae3c44b0dd66284ca3bdbb..c743c58ec198ec4a484d6d7cae9ff0160c75cfcc 100644
--- a/third_party/WebKit/LayoutTests/storage/indexeddb/resources/readonly.js
+++ b/third_party/WebKit/LayoutTests/storage/indexeddb/resources/readonly.js
@@ -30,7 +30,6 @@ function prepareDatabase()
objectStore = evalAndLog("objectStore = db.createObjectStore('foo');");
- setReadonlyProperty("objectStore.name", "'bar'");
setReadonlyProperty("objectStore.keyPath", "'bar'");
/* fails, split into separate test
setReadonlyProperty("objectStore.indexNames", "['bar']");
@@ -64,7 +63,6 @@ function checkCursor()
}
index = evalAndLog("index = objectStore.createIndex('first', 'first');");
- setReadonlyProperty("index.name", "'bar'");
setReadonlyProperty("index.objectStore", "this");
setReadonlyProperty("index.keyPath", "'bar'");
setReadonlyProperty("index.unique", "true");

Powered by Google App Engine
This is Rietveld 408576698