1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:18:11 +00:00

LibWeb: Implement CSSStyleDeclaration.cssText

This commit is contained in:
Luke Wilde 2022-11-05 04:51:05 +00:00 committed by Andreas Kling
parent 8066a67da2
commit c247fefee7
5 changed files with 65 additions and 7 deletions

View file

@ -25,6 +25,7 @@ public:
virtual WebIDL::ExceptionOr<String> remove_property(PropertyID) override;
virtual String serialized() const override;
virtual WebIDL::ExceptionOr<void> set_css_text(StringView) override;
private:
explicit ResolvedCSSStyleDeclaration(DOM::Element&);