LibWeb: Implement HTMLStyleElement.disabled

This commit is contained in:
Jamie Mansfield 2024-06-22 11:12:44 +01:00 committed by Andreas Kling
commit 1114bbf2f1
Notes: sideshowbarker 2024-07-17 07:35:03 +09:00
3 changed files with 32 additions and 1 deletions

View file

@ -23,6 +23,9 @@ public:
virtual void inserted() override;
virtual void removed_from(Node*) override;
bool disabled();
void set_disabled(bool disabled);
CSS::CSSStyleSheet* sheet();
CSS::CSSStyleSheet const* sheet() const;