mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-12 19:19:30 +00:00
LibWeb/IDB: Implement IDBCursor::continue
This commit is contained in:
parent
f5eb7928d9
commit
64c4bea189
Notes:
github-actions[bot]
2025-05-06 09:17:37 +00:00
Author: https://github.com/stelar7
Commit: 64c4bea189
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4524
Reviewed-by: https://github.com/gmta ✅
4 changed files with 82 additions and 15 deletions
|
@ -47,6 +47,8 @@ public:
|
|||
void set_value(JS::Value value) { m_value = value; }
|
||||
void set_object_store_position(GC::Ptr<Key> object_store_position) { m_object_store_position = object_store_position; }
|
||||
|
||||
WebIDL::ExceptionOr<void> continue_(JS::Value);
|
||||
|
||||
protected:
|
||||
explicit IDBCursor(JS::Realm&, GC::Ref<IDBTransaction>, GC::Ptr<Key>, Bindings::IDBCursorDirection, bool, GC::Ptr<Key>, JS::Value, CursorSource, GC::Ref<IDBKeyRange>, bool);
|
||||
virtual void initialize(JS::Realm&) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue