mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-29 13:46:31 +00:00
LibWeb: Add IDBCursor
This commit is contained in:
parent
614b93beca
commit
71772d97dc
Notes:
github-actions[bot]
2024-11-26 13:53:08 +00:00
Author: https://github.com/stelar7
Commit: 71772d97dc
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2236
Reviewed-by: https://github.com/gmta ✅
8 changed files with 88 additions and 0 deletions
22
Libraries/LibWeb/IndexedDB/IDBCursor.idl
Normal file
22
Libraries/LibWeb/IndexedDB/IDBCursor.idl
Normal file
|
@ -0,0 +1,22 @@
|
|||
#import <IndexedDB/IDBRequest.idl>
|
||||
|
||||
[Exposed=(Window,Worker)]
|
||||
interface IDBCursor {
|
||||
[FIXME] readonly attribute (IDBObjectStore or IDBIndex) source;
|
||||
[FIXME] readonly attribute IDBCursorDirection direction;
|
||||
[FIXME] readonly attribute any key;
|
||||
[FIXME] readonly attribute any primaryKey;
|
||||
[FIXME, SameObject] readonly attribute IDBRequest request;
|
||||
[FIXME] undefined advance([EnforceRange] unsigned long count);
|
||||
[FIXME] undefined continue(optional any key);
|
||||
[FIXME] undefined continuePrimaryKey(any key, any primaryKey);
|
||||
[FIXME, NewObject] IDBRequest update(any value);
|
||||
[FIXME, NewObject] IDBRequest delete();
|
||||
};
|
||||
|
||||
enum IDBCursorDirection {
|
||||
"next",
|
||||
"nextunique",
|
||||
"prev",
|
||||
"prevunique"
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue