mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-12 19:19:30 +00:00
LibWeb/IDB: Implement IDBObjectStore::delete
This commit is contained in:
parent
1fe6060ff9
commit
aa35ced34f
Notes:
github-actions[bot]
2025-05-08 13:14:32 +00:00
Author: https://github.com/stelar7
Commit: aa35ced34f
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4650
Reviewed-by: https://github.com/AtkinsSJ ✅
5 changed files with 40 additions and 3 deletions
|
@ -12,7 +12,7 @@ interface IDBObjectStore {
|
|||
|
||||
[NewObject] IDBRequest put(any value, optional any key);
|
||||
[NewObject] IDBRequest add(any value, optional any key);
|
||||
[FIXME, NewObject] IDBRequest delete(any query);
|
||||
[NewObject] IDBRequest delete(any query);
|
||||
[FIXME, NewObject] IDBRequest clear();
|
||||
[NewObject] IDBRequest get(any query);
|
||||
[FIXME, NewObject] IDBRequest getKey(any query);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue