mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-05 06:32:30 +02:00
LibWeb/IDB: Implement IDBIndex::getAll
This commit is contained in:
committed by
Jelle Raaijmakers
parent
47450bc15c
commit
3fa1d1299c
Notes:
github-actions[bot]
2025-05-14 15:19:24 +00:00
Author: https://github.com/stelar7 Commit: https://github.com/LadybirdBrowser/ladybird/commit/3fa1d1299c7 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4727 Reviewed-by: https://github.com/gmta ✅ Reviewed-by: https://github.com/shannonbooth
@@ -9,7 +9,7 @@ interface IDBIndex {
|
||||
readonly attribute boolean unique;
|
||||
[NewObject] IDBRequest get(any query);
|
||||
[NewObject] IDBRequest getKey(any query);
|
||||
[FIXME, NewObject] IDBRequest getAll(optional any query, optional [EnforceRange] unsigned long count);
|
||||
[NewObject] IDBRequest getAll(optional any query, optional [EnforceRange] unsigned long count);
|
||||
[FIXME, NewObject] IDBRequest getAllKeys(optional any query, optional [EnforceRange] unsigned long count);
|
||||
[FIXME, NewObject] IDBRequest count(optional any query);
|
||||
[NewObject] IDBRequest openCursor(optional any query, optional IDBCursorDirection direction = "next");
|
||||
|
||||
Reference in New Issue
Block a user