Index: Source/platform/Length.h |
diff --git a/Source/platform/Length.h b/Source/platform/Length.h |
index ee01789878c6164b4df834332587dbf3afa59897..7a3448b32e21049580c53799b31e4b9a26391292 100644 |
--- a/Source/platform/Length.h |
+++ b/Source/platform/Length.h |
@@ -36,7 +36,7 @@ |
namespace WebCore { |
enum LengthType { |
- Auto, Relative, Percent, Fixed, |
+ Auto, Percent, Fixed, |
Intrinsic, MinIntrinsic, |
MinContent, MaxContent, FillAvailable, FitContent, |
Calculated, |
@@ -224,7 +224,6 @@ public: |
} |
bool isAuto() const { return type() == Auto; } |
- bool isRelative() const { return type() == Relative; } |
bool isPercent() const { return type() == Percent || type() == Calculated; } |
bool isFixed() const { return type() == Fixed; } |
bool isIntrinsicOrAuto() const { return type() == Auto || isLegacyIntrinsic() || isIntrinsic(); } |