Index: Source/core/css/parser/CSSPropertyParser.cpp |
diff --git a/Source/core/css/parser/CSSPropertyParser.cpp b/Source/core/css/parser/CSSPropertyParser.cpp |
index abd04e819c8fefbe89a6ecbef46d19a915204041..c8bc3485f1bba457d94bccd96ead2c569f51df12 100644 |
--- a/Source/core/css/parser/CSSPropertyParser.cpp |
+++ b/Source/core/css/parser/CSSPropertyParser.cpp |
@@ -1052,6 +1052,10 @@ bool CSSPropertyParser::parseValue(CSSPropertyID propId, bool important) |
else |
parsedValue = parseReflect(); |
break; |
+ case CSSPropertyFontSizeAdjust: // none | <number> |
+ ASSERT(RuntimeEnabledFeatures::cssFontSizeAdjustEnabled()); |
+ validPrimitive = (id == CSSValueNone) ? true : validUnit(value, FNumber | FNonNeg); |
+ break; |
case CSSPropertyOpacity: |
validPrimitive = validUnit(value, FNumber); |
break; |