Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(250)

Unified Diff: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationName.cpp

Issue 2897833004: Refactored out need to pass property ID in background list parsing. (Closed)
Patch Set: changed enum to enum class and addressed comments Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationName.cpp
diff --git a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationName.cpp b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationName.cpp
index bd63423029a913f4817f60ba9179ad19b4b685a9..535da835a646e2265e1f7d2ab62b8d5fd6b3c731 100644
--- a/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationName.cpp
+++ b/third_party/WebKit/Source/core/css/properties/CSSPropertyAPIAnimationName.cpp
@@ -18,6 +18,7 @@ const CSSValue* CSSPropertyAPIAnimationName::parseSingleValue(
const CSSParserLocalContext& local_context) {
// Allow quoted name if this is an alias property.
return CSSPropertyParserHelpers::ConsumeCommaSeparatedList(
+ CSSPropertyParserHelpers::Optimise::kNo,
CSSPropertyAnimationNameUtils::ConsumeAnimationName, range, &context,
local_context.GetUseAliasParsing());
}

Powered by Google App Engine
This is Rietveld 408576698