| Index: Source/core/css/parser/CSSPropertyParser.cpp
|
| diff --git a/Source/core/css/parser/CSSPropertyParser.cpp b/Source/core/css/parser/CSSPropertyParser.cpp
|
| index 3e88acd9d7df54db4e68a2224d2a4cfaabd32998..a87acf142476086ba7033102ad4a2e7823263465 100644
|
| --- a/Source/core/css/parser/CSSPropertyParser.cpp
|
| +++ b/Source/core/css/parser/CSSPropertyParser.cpp
|
| @@ -1280,14 +1280,6 @@ bool CSSPropertyParser::parseValue(CSSPropertyID propId, bool important)
|
| else
|
| validPrimitive = validUnit(value, FLength | FNonNeg);
|
| break;
|
| - case CSSPropertyWebkitColumnAxis:
|
| - if (id == CSSValueHorizontal || id == CSSValueVertical || id == CSSValueAuto)
|
| - validPrimitive = true;
|
| - break;
|
| - case CSSPropertyWebkitColumnProgression:
|
| - if (id == CSSValueNormal || id == CSSValueReverse)
|
| - validPrimitive = true;
|
| - break;
|
| case CSSPropertyWebkitColumnSpan: // none | all | 1 (will be dropped in the unprefixed property)
|
| if (id == CSSValueAll || id == CSSValueNone)
|
| validPrimitive = true;
|
|
|