Index: Source/core/css/parser/CSSPropertyParser.cpp |
diff --git a/Source/core/css/parser/CSSPropertyParser.cpp b/Source/core/css/parser/CSSPropertyParser.cpp |
index cb0004428d3036ce8060c637c3f4ffaebb3dfd47..77ca15a01e986e1adf09f1d8dc071b3ded481413 100644 |
--- a/Source/core/css/parser/CSSPropertyParser.cpp |
+++ b/Source/core/css/parser/CSSPropertyParser.cpp |
@@ -625,8 +625,8 @@ bool CSSPropertyParser::parseValue(CSSPropertyID propId, bool important) |
// [ auto | crosshair | default | pointer | progress | move | e-resize | ne-resize | |
// nw-resize | n-resize | se-resize | sw-resize | s-resize | w-resize | ew-resize | |
// ns-resize | nesw-resize | nwse-resize | col-resize | row-resize | text | wait | help | |
- // vertical-text | cell | context-menu | alias | copy | no-drop | not-allowed | -webkit-zoom-in |
- // -webkit-zoom-out | all-scroll | -webkit-grab | -webkit-grabbing ] ] | inherit |
+ // vertical-text | cell | context-menu | alias | copy | no-drop | not-allowed | all-scroll | |
+ // zoom-in | zoom-out | -webkit-grab | -webkit-grabbing | -webkit-zoom-in | -webkit-zoom-out ] ] | inherit |
RefPtrWillBeRawPtr<CSSValueList> list = nullptr; |
while (value) { |
RefPtrWillBeRawPtr<CSSValue> image = nullptr; |
@@ -672,7 +672,7 @@ bool CSSPropertyParser::parseValue(CSSPropertyID propId, bool important) |
return false; |
if (inQuirksMode() && value->id == CSSValueHand) // MSIE 5 compatibility :/ |
list->append(cssValuePool().createIdentifierValue(CSSValuePointer)); |
- else if ((value->id >= CSSValueAuto && value->id <= CSSValueWebkitGrabbing) || value->id == CSSValueCopy || value->id == CSSValueNone) |
+ else if ((value->id >= CSSValueAuto && value->id <= CSSValueWebkitZoomOut) || value->id == CSSValueCopy || value->id == CSSValueNone) |
list->append(cssValuePool().createIdentifierValue(value->id)); |
m_valueList->next(); |
parsedValue = list.release(); |
@@ -682,7 +682,7 @@ bool CSSPropertyParser::parseValue(CSSPropertyID propId, bool important) |
if (inQuirksMode() && value->id == CSSValueHand) { // MSIE 5 compatibility :/ |
id = CSSValuePointer; |
validPrimitive = true; |
- } else if ((value->id >= CSSValueAuto && value->id <= CSSValueWebkitGrabbing) || value->id == CSSValueCopy || value->id == CSSValueNone) |
+ } else if ((value->id >= CSSValueAuto && value->id <= CSSValueWebkitZoomOut) || value->id == CSSValueCopy || value->id == CSSValueNone) |
validPrimitive = true; |
} else { |
ASSERT_NOT_REACHED(); |