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

Unified Diff: third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.idl

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/Source/modules/indexeddb/IDBObjectStore.idl
diff --git a/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.idl b/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.idl
index 1f9963183d4ee0493339eb3ec498ec551df5fb55..eb57f91985708b9b8d07b4ee8201989e6ae7b998 100644
--- a/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.idl
+++ b/third_party/WebKit/Source/modules/indexeddb/IDBObjectStore.idl
@@ -28,7 +28,7 @@
[
Exposed=(Window,Worker),
] interface IDBObjectStore {
- readonly attribute DOMString name;
+ [RaisesException=Setter] attribute DOMString name;
[CallWith=ScriptState] readonly attribute any keyPath;
[Measure] readonly attribute DOMStringList indexNames;
readonly attribute IDBTransaction transaction;

Powered by Google App Engine
This is Rietveld 408576698