summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/StyleProperties.h
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2022-02-08 14:48:37 +0000
committerAndreas Kling <kling@serenityos.org>2022-02-08 17:45:51 +0100
commit10c6c77b5c252ac88a5411b8188b8ee4ed190827 (patch)
treec046fb81adba658592884fa30eeeada4ecf0c16e /Userland/Libraries/LibWeb/CSS/StyleProperties.h
parentb51f428165c60120fcf30f8b5e6c785ca1aec16d (diff)
downloadserenity-10c6c77b5c252ac88a5411b8188b8ee4ed190827.zip
LibWeb: Render multiple box-shadows
Because why not? :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/StyleProperties.h')
-rw-r--r--Userland/Libraries/LibWeb/CSS/StyleProperties.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/StyleProperties.h b/Userland/Libraries/LibWeb/CSS/StyleProperties.h
index 777a7a65c5..4c86749b7a 100644
--- a/Userland/Libraries/LibWeb/CSS/StyleProperties.h
+++ b/Userland/Libraries/LibWeb/CSS/StyleProperties.h
@@ -64,7 +64,7 @@ public:
Optional<CSS::JustifyContent> justify_content() const;
Optional<CSS::Overflow> overflow_x() const;
Optional<CSS::Overflow> overflow_y() const;
- Optional<CSS::BoxShadowData> box_shadow() const;
+ Vector<CSS::BoxShadowData> box_shadow() const;
CSS::BoxSizing box_sizing() const;
Optional<CSS::PointerEvents> pointer_events() const;