mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-01 15:18:06 +00:00
LibWeb/IDB: Implement IDBObjectStore::add
This commit is contained in:
parent
a06cec7a3c
commit
ca1e94f9ea
Notes:
github-actions[bot]
2025-04-23 18:36:55 +00:00
Author: https://github.com/stelar7
Commit: ca1e94f9ea
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4317
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/kennethmyhra ✅
3 changed files with 9 additions and 1 deletions
|
@ -11,7 +11,7 @@ interface IDBObjectStore {
|
|||
readonly attribute boolean autoIncrement;
|
||||
|
||||
[FIXME, NewObject] IDBRequest put(any value, optional any key);
|
||||
[FIXME, NewObject] IDBRequest add(any value, optional any key);
|
||||
[NewObject] IDBRequest add(any value, optional any key);
|
||||
[FIXME, NewObject] IDBRequest delete(any query);
|
||||
[FIXME, NewObject] IDBRequest clear();
|
||||
[FIXME, NewObject] IDBRequest get(any query);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue