LibWeb/HTML: Implement the broadcast steps for Storage

This does not work properly yet as we do not create storage objects in a
spec compliant manner.
This commit is contained in:
Shannon Booth 2024-12-27 20:55:08 +13:00 committed by Andreas Kling
commit c536f65160
Notes: github-actions[bot] 2025-01-02 10:39:23 +00:00
2 changed files with 73 additions and 4 deletions

View file

@ -45,6 +45,7 @@ private:
Storage(JS::Realm&, Type, u64 quota_limit);
virtual void initialize(JS::Realm&) override;
virtual void finalize() override;
// ^PlatformObject
virtual Optional<JS::Value> item_value(size_t index) const override;