mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-13 03:29:49 +00:00
LibWeb/IDB: Implement IDBObjectStore::getAllKeys
This commit is contained in:
parent
927237c736
commit
7250aa0b6b
Notes:
github-actions[bot]
2025-05-12 20:29:01 +00:00
Author: https://github.com/stelar7
Commit: 7250aa0b6b
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4662
Reviewed-by: https://github.com/shannonbooth ✅
3 changed files with 33 additions and 1 deletions
|
@ -17,7 +17,7 @@ interface IDBObjectStore {
|
|||
[NewObject] IDBRequest get(any query);
|
||||
[NewObject] IDBRequest getKey(any query);
|
||||
[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 getAllKeys(optional any query, optional [EnforceRange] unsigned long count);
|
||||
[NewObject] IDBRequest count(optional any query);
|
||||
[NewObject] IDBRequest openCursor(optional any query, optional IDBCursorDirection direction = "next");
|
||||
[NewObject] IDBRequest openKeyCursor(optional any query, optional IDBCursorDirection direction = "next");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue