1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 10:18:15 +09: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
Notes: sideshowbarker 2024-07-17 04:42:50 +09:00
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&);