LibWeb: Implement the color-scheme meta tag name

This commit is contained in:
Gingeh 2025-01-04 09:59:57 +11:00 committed by Sam Atkins
commit df70455d3f
Notes: github-actions[bot] 2025-01-08 11:19:34 +00:00
7 changed files with 97 additions and 3 deletions

View file

@ -41,8 +41,12 @@ private:
virtual void initialize(JS::Realm&) override;
void update_metadata(Optional<String> const& old_name = {});
// ^DOM::Element
virtual void inserted() override;
virtual void removed_from(Node*) override;
virtual void attribute_changed(FlyString const& local_name, Optional<String> const& old_value, Optional<String> const& value, Optional<FlyString> const& namespace_) override;
};
}