Index: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
diff --git a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
index c97e9a71fbd6107e43b3e073b90c33de58b94e86..31aea6f2af756242fded154a80cfa8ef2b2e2914 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
@@ -1909,7 +1909,7 @@ static CSSValue* consumeStrokeDasharray(CSSParserTokenRange& range) |
CSSValueList* dashes = CSSValueList::createCommaSeparated(); |
do { |
- CSSPrimitiveValue* dash = consumeLengthOrPercent(range, SVGAttributeMode, ValueRangeNonNegative, UnitlessQuirk::Allow); |
+ CSSPrimitiveValue* dash = consumeLengthOrPercent(range, SVGAttributeMode, ValueRangeNonNegative); |
if (!dash || (consumeCommaIncludingWhitespace(range) && range.atEnd())) |
return nullptr; |
dashes->append(*dash); |