diff options
author | Adam Hodgen <ant1441@gmail.com> | 2021-02-21 17:41:00 +0000 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-02-28 18:19:52 +0100 |
commit | e169e241046f70fb9edda29fab42818d7d2bfb22 (patch) | |
tree | 766a734847a054b89fc945d427bbdaf801a18448 /Userland/Libraries/LibWeb/CSS/StyleProperties.h | |
parent | a375133cc5de6130860285bf8224801e7613ad4e (diff) | |
download | serenity-e169e241046f70fb9edda29fab42818d7d2bfb22.zip |
LibWeb: Parese the CSS "cursor" 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 9777162850..4f25e378c4 100644 --- a/Userland/Libraries/LibWeb/CSS/StyleProperties.h +++ b/Userland/Libraries/LibWeb/CSS/StyleProperties.h @@ -64,6 +64,7 @@ public: CSS::Display display() const; Optional<CSS::Float> float_() const; Optional<CSS::Clear> clear() const; + Optional<CSS::Cursor> cursor() const; Optional<CSS::WhiteSpace> white_space() const; Optional<CSS::LineStyle> line_style(CSS::PropertyID) const; Optional<CSS::TextDecorationLine> text_decoration_line() const; |