mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 21:29:06 +00:00
LibWeb/IDB: Implement IDBObjectStore::open_cursor
This commit is contained in:
parent
98d08b27e4
commit
05fe37619a
Notes:
github-actions[bot]
2025-05-06 09:18:12 +00:00
Author: https://github.com/stelar7
Commit: 05fe37619a
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4524
Reviewed-by: https://github.com/gmta ✅
3 changed files with 44 additions and 1 deletions
|
@ -19,7 +19,7 @@ interface IDBObjectStore {
|
|||
[FIXME, NewObject] IDBRequest getAll(optional any query, optional [EnforceRange] unsigned long count);
|
||||
[FIXME, NewObject] IDBRequest getAllKeys(optional any query, optional [EnforceRange] unsigned long count);
|
||||
[NewObject] IDBRequest count(optional any query);
|
||||
[FIXME, NewObject] IDBRequest openCursor(optional any query, optional IDBCursorDirection direction = "next");
|
||||
[NewObject] IDBRequest openCursor(optional any query, optional IDBCursorDirection direction = "next");
|
||||
[FIXME, NewObject] IDBRequest openKeyCursor(optional any query, optional IDBCursorDirection direction = "next");
|
||||
IDBIndex index(DOMString name);
|
||||
[NewObject] IDBIndex createIndex(DOMString name, (DOMString or sequence<DOMString>) keyPath, optional IDBIndexParameters options = {});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue