LibWeb/IDB: Implement IDBObjectStore::autoIncrement

This commit is contained in:
stelar7
2025-03-24 20:56:36 +01:00
committed by Jelle Raaijmakers
parent b0453e044d
commit 2e02b62126
Notes: github-actions[bot] 2025-03-27 15:49:18 +00:00
3 changed files with 6 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ interface IDBObjectStore {
readonly attribute any keyPath;
[FIXME] readonly attribute DOMStringList indexNames;
[SameObject] readonly attribute IDBTransaction transaction;
[FIXME] readonly attribute boolean autoIncrement;
readonly attribute boolean autoIncrement;
[FIXME, NewObject] IDBRequest put(any value, optional any key);
[FIXME, NewObject] IDBRequest add(any value, optional any key);