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 01669d15a13b58ae1d147a92985e4c5e48c93be2..eeb412401ea7e277ea7bc1073cf78dc4bc1de362 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
@@ -3120,6 +3120,8 @@ PassRefPtrWillBeRawPtr<CSSValue> CSSPropertyParser::parseSingleValue(CSSProperty |
return consumeTransformOrigin(m_range, m_context.mode(), UnitlessQuirk::Forbid); |
case CSSPropertyContent: |
return consumeContent(m_range, m_context); |
+ case CSSPropertyListStyleImage: |
+ return consumeImage(m_range, m_context); |
default: |
return nullptr; |
} |
@@ -3710,6 +3712,8 @@ bool CSSPropertyParser::parseShorthand(CSSPropertyID unresolvedProperty, bool im |
return consumeShorthandGreedily(flexFlowShorthand(), important); |
case CSSPropertyWebkitColumnRule: |
return consumeShorthandGreedily(webkitColumnRuleShorthand(), important); |
+ case CSSPropertyListStyle: |
+ return consumeShorthandGreedily(listStyleShorthand(), important); |
default: |
m_currentShorthand = oldShorthand; |
return false; |