LibWeb/IDB: Implement IDBCursor::update

This commit is contained in:
stelar7 2025-05-13 10:09:48 +02:00 committed by Andrew Kaster
commit cf84a98bab
Notes: github-actions[bot] 2025-05-13 16:49:59 +00:00
3 changed files with 84 additions and 1 deletions

View file

@ -10,7 +10,7 @@ interface IDBCursor {
undefined advance([EnforceRange] unsigned long count);
undefined continue(optional any key);
undefined continuePrimaryKey(any key, any primaryKey);
[FIXME, NewObject] IDBRequest update(any value);
[NewObject] IDBRequest update(any value);
[FIXME, NewObject] IDBRequest delete();
};