LibWeb/IDB: Implement recent spec changes

This commit is contained in:
stelar7
2025-05-06 11:36:11 +02:00
committed by Sam Atkins
parent 6cbb5d2785
commit 9d5f6108e4
Notes: github-actions[bot] 2025-05-06 12:31:37 +00:00
9 changed files with 71 additions and 56 deletions

View File

@@ -33,8 +33,6 @@ public:
GC::Ref<IDBTransaction> transaction() { return m_object_store_handle->transaction(); }
GC::Ref<Index> index() { return m_index; }
HTML::SerializationRecord get_referenced_value(IndexRecord const& index_record) const;
protected:
explicit IDBIndex(JS::Realm&, GC::Ref<Index>, GC::Ref<IDBObjectStore>);
virtual void initialize(JS::Realm&) override;