Re: [IndexedDB] Add openCursor(key, primaryKey) and continuePrimaryKey (#14)

Agree. `IDBIndexOpenCursorOptions` should be a complete cursor position.

    dictionary IDBIndexOpenCursorOptions {
      IDBKey key, // nullable, default to lower-bound
      IDBKey primaryKey; // nullable, default to first
    }

Using `openCursor` becomes easier. Let the keyRange unchanged and open with different starting position, without requiring keyRange to be met with cursor position. 

---
Reply to this email directly or view it on GitHub:
https://github.com/w3c/IndexedDB/issues/14#issuecomment-113731723

Received on Saturday, 20 June 2015 08:45:08 UTC