| Index: third_party/WebKit/Source/core/css/CSSPrimitiveValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSPrimitiveValue.h b/third_party/WebKit/Source/core/css/CSSPrimitiveValue.h
|
| index 546cbdf38ca7242ebc9fc82f34a86c7c6fae95db..b0f0769aaa6f1f38d0bce514e0841be8de00cb89 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSPrimitiveValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValue.h
|
| @@ -193,7 +193,6 @@ public:
|
| bool isPx() const { return typeWithCalcResolved() == UnitType::Pixels; }
|
| bool isTime() const { return type() == UnitType::Seconds || type() == UnitType::Milliseconds; }
|
| bool isCalculated() const { return type() == UnitType::Calc; }
|
| - bool isCalculatedPercentageWithNumber() const { return typeWithCalcResolved() == UnitType::CalcPercentageWithNumber; }
|
| bool isCalculatedPercentageWithLength() const { return typeWithCalcResolved() == UnitType::CalcPercentageWithLength; }
|
| static bool isResolution(UnitType type) { return type >= UnitType::DotsPerPixel && type <= UnitType::DotsPerCentimeter; }
|
| bool isFlex() const { return typeWithCalcResolved() == UnitType::Fraction; }
|
|
|