Index: Source/core/css/parser/CSSPropertyParser.cpp |
diff --git a/Source/core/css/parser/CSSPropertyParser.cpp b/Source/core/css/parser/CSSPropertyParser.cpp |
index a7170fdd2247855c091cedce0ce9daf81274f9ac..b1a34bf4987049c77bd43d5232702d52fb1f8c9c 100644 |
--- a/Source/core/css/parser/CSSPropertyParser.cpp |
+++ b/Source/core/css/parser/CSSPropertyParser.cpp |
@@ -2090,7 +2090,7 @@ CSSPropertyParser::SizeParameterType CSSPropertyParser::parseSizeParameter(CSSVa |
// [ <string> <string> ]+ | none, but none is handled in parseValue |
PassRefPtrWillBeRawPtr<CSSValue> CSSPropertyParser::parseQuotes() |
{ |
- RefPtrWillBeRawPtr<CSSValueList> values = CSSValueList::createCommaSeparated(); |
+ RefPtrWillBeRawPtr<CSSValueList> values = CSSValueList::createSpaceSeparated(); |
while (CSSParserValue* val = m_valueList->current()) { |
RefPtrWillBeRawPtr<CSSValue> parsedValue = nullptr; |
if (val->unit != CSSPrimitiveValue::CSS_STRING) |