diff options
author | Sam Atkins <atkinssj@serenityos.org> | 2022-02-24 16:52:58 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-02-25 19:35:34 +0100 |
commit | 1de0ca32869a94ad7debdff4a85c06db4de6aa7f (patch) | |
tree | 3d161f2ca9701ffb9cea0f6ffc7db02ab7c3ca6f /Userland/Libraries/LibWeb/CSS/StyleProperties.h | |
parent | 7eb7396f8b22288627e5cd22c1c4a778fcab47e4 (diff) | |
download | serenity-1de0ca32869a94ad7debdff4a85c06db4de6aa7f.zip |
LibWeb: Compute value for `content` property
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/StyleProperties.h')
-rw-r--r-- | Userland/Libraries/LibWeb/CSS/StyleProperties.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/StyleProperties.h b/Userland/Libraries/LibWeb/CSS/StyleProperties.h index d501619a32..c10e8b3318 100644 --- a/Userland/Libraries/LibWeb/CSS/StyleProperties.h +++ b/Userland/Libraries/LibWeb/CSS/StyleProperties.h @@ -50,6 +50,7 @@ public: CSS::Display display() const; Optional<CSS::Float> float_() const; Optional<CSS::Clear> clear() const; + CSS::ContentData content() const; Optional<CSS::Cursor> cursor() const; Optional<CSS::WhiteSpace> white_space() const; Optional<CSS::LineStyle> line_style(CSS::PropertyID) const; |