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 7611e9a2c5b3d90f5031af1202e207be2635dc60..872b229ef80b93f36d834b9ebd2d87b5ea58fa28 100644 |
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp |
@@ -749,7 +749,7 @@ static CSSValue* ConsumeOffsetRotate(CSSParserTokenRange& range) { |
// offset: <offset-path> <offset-distance> <offset-rotation> |
bool CSSPropertyParser::ConsumeOffsetShorthand(bool important) { |
const CSSValue* offset_path = |
- CSSPropertyOffsetPathUtils::ConsumeOffsetPath(range_, context_, false); |
+ CSSPropertyOffsetPathUtils::ConsumeOffsetPath(range_, context_); |
const CSSValue* offset_distance = |
ConsumeLengthOrPercent(range_, context_->Mode(), kValueRangeAll); |
const CSSValue* offset_rotation = ConsumeOffsetRotate(range_); |
@@ -1749,8 +1749,7 @@ const CSSValue* CSSPropertyParser::ParseSingleValue( |
case CSSPropertyD: |
return CSSPropertyOffsetPathUtils::ConsumePathOrNone(range_); |
case CSSPropertyOffsetPath: |
- return CSSPropertyOffsetPathUtils::ConsumeOffsetPath( |
- range_, context_, unresolved_property == CSSPropertyAliasMotionPath); |
+ return CSSPropertyOffsetPathUtils::ConsumeOffsetPath(range_, context_); |
case CSSPropertyOffsetDistance: |
return ConsumeLengthOrPercent(range_, context_->Mode(), kValueRangeAll); |
case CSSPropertyOffsetRotate: |