summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Forward.h
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2022-01-14 12:23:54 +0000
committerAndreas Kling <kling@serenityos.org>2022-01-20 00:04:10 +0100
commit01b57fa8b7275cba91e476ea6ba3f079514c4ac7 (patch)
tree461312b68b372a8a1939afc2d1d203083995e444 /Userland/Libraries/LibWeb/Forward.h
parent71ab8fb757f560d50f1c324fbdfa5678597d0b69 (diff)
downloadserenity-01b57fa8b7275cba91e476ea6ba3f079514c4ac7.zip
LibWeb: Add CSS::Percentage, PercentageOr and LengthPercentage types
Length and Percentage are different types, and sometimes only one or the other is allowed in a given CSS property. This is a first step towards separating them.
Diffstat (limited to 'Userland/Libraries/LibWeb/Forward.h')
-rw-r--r--Userland/Libraries/LibWeb/Forward.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Forward.h b/Userland/Libraries/LibWeb/Forward.h
index ee116ffa0a..0454931ec4 100644
--- a/Userland/Libraries/LibWeb/Forward.h
+++ b/Userland/Libraries/LibWeb/Forward.h
@@ -26,7 +26,6 @@ class BorderRadiusStyleValue;
class BorderStyleValue;
class BoxShadowStyleValue;
class CalculatedStyleValue;
-class CalculatedStyleValue;
class ColorStyleValue;
class CSSImportRule;
class CSSMediaRule;
@@ -46,6 +45,7 @@ class ImageStyleValue;
class InheritStyleValue;
class InitialStyleValue;
class Length;
+class LengthPercentage;
class LengthStyleValue;
class ListStyleStyleValue;
class MediaList;
@@ -54,6 +54,7 @@ class MediaQueryList;
class MediaQueryListEvent;
class NumericStyleValue;
class OverflowStyleValue;
+class Percentage;
class PositionStyleValue;
class PropertyOwningCSSStyleDeclaration;
class Screen;