| Index: third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.idl
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.idl b/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.idl
|
| index de196bf2d3a5aab0caedc1fe1aa1f2e187942930..353864de2598db5e91a3c672e09bb3f9b51d22d0 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.idl
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/IndexedDB/interfaces.idl
|
| @@ -9,7 +9,6 @@
|
| "done"
|
| };
|
|
|
| -[Exposed=(Window,Worker)]
|
| interface IDBKeyRange {
|
| readonly attribute any lower;
|
| readonly attribute any upper;
|
| @@ -43,7 +42,6 @@
|
| unsigned long long? newVersion = null;
|
| };
|
|
|
| -[Exposed=(Window,Worker)]
|
| interface IDBRequest : EventTarget {
|
| readonly attribute any result;
|
| readonly attribute DOMError error;
|
| @@ -54,14 +52,12 @@
|
| attribute EventHandler onerror;
|
| };
|
|
|
| -[Exposed=(Window,Worker)]
|
| interface IDBOpenDBRequest : IDBRequest {
|
| attribute EventHandler onblocked;
|
| attribute EventHandler onupgradeneeded;
|
| };
|
|
|
| -[Exposed=(Window,Worker),
|
| - Constructor(DOMString type, optional IDBVersionChangeEventInit eventInitDict)]
|
| +[Constructor(DOMString type, optional IDBVersionChangeEventInit eventInitDict)]
|
| interface IDBVersionChangeEvent : Event {
|
| readonly attribute unsigned long long oldVersion;
|
| readonly attribute unsigned long long? newVersion;
|
| @@ -72,14 +68,12 @@
|
| readonly attribute IDBFactory indexedDB;
|
| };
|
|
|
| -[Exposed=(Window,Worker)]
|
| interface IDBFactory {
|
| IDBOpenDBRequest open (DOMString name, [EnforceRange] optional unsigned long long version);
|
| IDBOpenDBRequest deleteDatabase (DOMString name);
|
| short cmp (any first, any second);
|
| };
|
|
|
| -[Exposed=(Window,Worker)]
|
| interface IDBDatabase : EventTarget {
|
| readonly attribute DOMString name;
|
| readonly attribute unsigned long long version;
|
| @@ -94,7 +88,6 @@
|
| attribute EventHandler onversionchange;
|
| };
|
|
|
| -[Exposed=(Window,Worker)]
|
| interface IDBObjectStore {
|
| attribute DOMString name;
|
| readonly attribute any keyPath;
|
| @@ -113,7 +106,6 @@
|
| IDBRequest count (optional any key);
|
| };
|
|
|
| -[Exposed=(Window,Worker)]
|
| interface IDBIndex {
|
| attribute DOMString name;
|
| readonly attribute IDBObjectStore objectStore;
|
| @@ -127,7 +119,6 @@
|
| IDBRequest count (optional any key);
|
| };
|
|
|
| -[Exposed=(Window,Worker)]
|
| interface IDBCursor {
|
| readonly attribute (IDBObjectStore or IDBIndex) source;
|
| readonly attribute IDBCursorDirection direction;
|
| @@ -139,12 +130,10 @@
|
| IDBRequest delete ();
|
| };
|
|
|
| -[Exposed=(Window,Worker)]
|
| interface IDBCursorWithValue : IDBCursor {
|
| readonly attribute any value;
|
| };
|
|
|
| -[Exposed=(Window,Worker)]
|
| interface IDBTransaction : EventTarget {
|
| readonly attribute IDBTransactionMode mode;
|
| readonly attribute IDBDatabase db;
|
|
|