1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:57:44 +00:00

LibWeb: Implement CSSStyleDeclaration.getPropertyValue(property)

This commit is contained in:
Andreas Kling 2021-09-12 20:44:17 +02:00
parent a72fd78713
commit a2f5589d3a
3 changed files with 15 additions and 0 deletions

View file

@ -34,6 +34,8 @@ public:
virtual Optional<StyleProperty> property(PropertyID) const = 0;
virtual bool set_property(PropertyID, StringView css_text) = 0;
String get_property_value(StringView property) const;
protected:
CSSStyleDeclaration() { }
};