LibWeb/IDB: Implement IDBCursor::continuePrimaryKey

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

View file

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