| Index: third_party/WebCore/Modules/indexeddb/IDBCursor.idl
|
| diff --git a/third_party/WebCore/Modules/indexeddb/IDBCursor.idl b/third_party/WebCore/Modules/indexeddb/IDBCursor.idl
|
| index 80eb6b2330f8bc688f79bd6a071a84923683bad4..d73d146274418402742320f4f3e606ab3d202e49 100644
|
| --- a/third_party/WebCore/Modules/indexeddb/IDBCursor.idl
|
| +++ b/third_party/WebCore/Modules/indexeddb/IDBCursor.idl
|
| @@ -28,12 +28,13 @@ module storage {
|
| interface [
|
| Conditional=INDEXED_DATABASE,
|
| ] IDBCursor {
|
| + // FIXME: Eventually remove legacy enum constants, see https://bugs.webkit.org/show_bug.cgi?id=85315
|
| const unsigned short NEXT = 0;
|
| const unsigned short NEXT_NO_DUPLICATE = 1;
|
| const unsigned short PREV = 2;
|
| const unsigned short PREV_NO_DUPLICATE = 3;
|
|
|
| - readonly attribute unsigned short direction;
|
| + readonly attribute DOMString direction;
|
| readonly attribute IDBKey key;
|
| readonly attribute IDBKey primaryKey;
|
| readonly attribute IDBAny source;
|
|
|