| Index: sky/engine/core/css/parser/CSSPropertyParser.cpp
|
| diff --git a/sky/engine/core/css/parser/CSSPropertyParser.cpp b/sky/engine/core/css/parser/CSSPropertyParser.cpp
|
| index 16808e2c1a4de98e1105b0e4f19a90a743d166a3..4401dfafdf6ffc3199ab2caff0acae3a6f71716a 100644
|
| --- a/sky/engine/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/sky/engine/core/css/parser/CSSPropertyParser.cpp
|
| @@ -1149,12 +1149,6 @@ bool CSSPropertyParser::parseValue(CSSPropertyID propId, bool important)
|
|
|
| // Apple specific properties. These will never be standardized and are purely to
|
| // support custom WebKit-based Apple applications.
|
| - case CSSPropertyWebkitLineClamp:
|
| - // When specifying number of lines, don't allow 0 as a valid value
|
| - // When specifying either type of unit, require non-negative integers
|
| - validPrimitive = (!id && (value->unit == CSSPrimitiveValue::CSS_PERCENTAGE || value->fValue) && validUnit(value, FInteger | FPercent | FNonNeg));
|
| - break;
|
| -
|
| case CSSPropertyWebkitFontSizeDelta: // <length>
|
| validPrimitive = validUnit(value, FLength);
|
| break;
|
|
|