mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-13 03:29:49 +00:00
LibWeb/IDB: Implement IDBObjectStore::deleteIndex
This commit is contained in:
parent
fce936e05a
commit
718c805e95
Notes:
github-actions[bot]
2025-04-09 17:50:24 +00:00
Author: https://github.com/stelar7
Commit: 718c805e95
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4178
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/AtkinsSJ
3 changed files with 35 additions and 1 deletions
|
@ -23,7 +23,7 @@ interface IDBObjectStore {
|
|||
[FIXME, NewObject] IDBRequest openKeyCursor(optional any query, optional IDBCursorDirection direction = "next");
|
||||
IDBIndex index(DOMString name);
|
||||
[NewObject] IDBIndex createIndex(DOMString name, (DOMString or sequence<DOMString>) keyPath, optional IDBIndexParameters options = {});
|
||||
[FIXME] undefined deleteIndex(DOMString name);
|
||||
undefined deleteIndex(DOMString name);
|
||||
};
|
||||
|
||||
dictionary IDBIndexParameters {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue