mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
LibWeb/IDB: Implement IDBObjectStore::transaction
This commit is contained in:
parent
594ba28c35
commit
b0453e044d
|
|
@ -24,6 +24,7 @@ public:
|
|||
[[nodiscard]] static GC::Ref<IDBObjectStore> create(JS::Realm&, GC::Ref<ObjectStore>, GC::Ref<IDBTransaction>);
|
||||
|
||||
JS::Value key_path() const;
|
||||
GC::Ref<IDBTransaction> transaction() const { return m_transaction; }
|
||||
|
||||
protected:
|
||||
explicit IDBObjectStore(JS::Realm&, GC::Ref<ObjectStore>, GC::Ref<IDBTransaction>);
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ interface IDBObjectStore {
|
|||
[FIXME] attribute DOMString name;
|
||||
readonly attribute any keyPath;
|
||||
[FIXME] readonly attribute DOMStringList indexNames;
|
||||
[FIXME, SameObject] readonly attribute IDBTransaction transaction;
|
||||
[SameObject] readonly attribute IDBTransaction transaction;
|
||||
[FIXME] readonly attribute boolean autoIncrement;
|
||||
|
||||
[FIXME, NewObject] IDBRequest put(any value, optional any key);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user