| Index: modules/indexeddb/IDBCursor.idl
|
| diff --git a/modules/indexeddb/IDBCursor.idl b/modules/indexeddb/IDBCursor.idl
|
| index 727f529293cc4f1baca14ba1240a5bdd8a52799f..b96920ba650708be220a2e5557f3cdabdf9ff052 100644
|
| --- a/modules/indexeddb/IDBCursor.idl
|
| +++ b/modules/indexeddb/IDBCursor.idl
|
| @@ -23,11 +23,20 @@
|
| * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| +// http://www.w3.org/TR/IndexedDB/#idl-def-IDBCursor
|
| +
|
| +enum IDBCursorDirection {
|
| + "next",
|
| + "nextunique",
|
| + "prev",
|
| + "prevunique"
|
| +};
|
| +
|
| [
|
| GarbageCollected
|
| ] interface IDBCursor {
|
|
|
| - readonly attribute DOMString direction;
|
| + readonly attribute IDBCursorDirection direction;
|
| [CallWith=ScriptState, CachedAttribute=isKeyDirty] readonly attribute any key;
|
| [CallWith=ScriptState, CachedAttribute=isPrimaryKeyDirty] readonly attribute any primaryKey;
|
| [CallWith=ScriptState] readonly attribute any source;
|
|
|