LibWeb/IDB: Implement IDBCursor::advance

This commit is contained in:
stelar7 2025-05-13 09:54:00 +02:00 committed by Andrew Kaster
commit 6afa2c8eee
Notes: github-actions[bot] 2025-05-13 16:50:15 +00:00
3 changed files with 48 additions and 1 deletions

View file

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