summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Forward.h
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2022-03-23 16:55:22 +0000
committerAndreas Kling <kling@serenityos.org>2022-03-24 18:08:34 +0100
commit1094654adc76385d6b763f2d3d8a2f79cf612188 (patch)
treef0e77263329bcb992ffa788c5c92a617415a2466 /Userland/Libraries/LibWeb/Forward.h
parentf9367a5fdbc530791f01132ad03b0dfe118e4d66 (diff)
downloadserenity-1094654adc76385d6b763f2d3d8a2f79cf612188.zip
LbWeb: Rename BoxShadowFoo => ShadowFoo
The `text-shadow` property is almost identical to `box-shadow`: > Values are interpreted as for box-shadow [CSS-BACKGROUNDS-3]. > (But note that the inset keyword are not allowed.) So, let's use the same data structures and parsing code for both. :^)
Diffstat (limited to 'Userland/Libraries/LibWeb/Forward.h')
-rw-r--r--Userland/Libraries/LibWeb/Forward.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h
index a065362ce7..215d28635a 100644
--- a/Userland/Libraries/LibWeb/Forward.h
+++ b/Userland/Libraries/LibWeb/Forward.h
@@ -27,7 +27,6 @@ class BackgroundSizeStyleValue;
class BackgroundStyleValue;
class BorderRadiusStyleValue;
class BorderStyleValue;
-class BoxShadowStyleValue;
class CalculatedStyleValue;
class ColorStyleValue;
class ContentStyleValue;
@@ -70,6 +69,7 @@ class Resolution;
class ResolutionStyleValue;
class Screen;
class Selector;
+class ShadowStyleValue;
class StringStyleValue;
class StyleComputer;
class StyleProperties;