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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp

Issue 1408063004: Parse animation and transition shorthands in CSSPropertyParser with CSSParserTokens (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@anim4
Patch Set: address comments Created 5 years, 2 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/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 7091dc6f1d12df160dd619817674d9ce0530ab45..e3a842481667c8b4c121d1a588343e702dc30320 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
@@ -1324,6 +1324,52 @@ static PassRefPtrWillBeRawPtr<CSSValueList> consumeAnimationPropertyList(CSSProp
return list.release();
}
+bool CSSPropertyParser::consumeAnimationShorthand(const StylePropertyShorthand& shorthand, bool useLegacyParsing, bool important)
+{
+ const unsigned longhandCount = shorthand.length();
+ RefPtrWillBeRawPtr<CSSValueList> longhands[8];
+ ASSERT(longhandCount <= 8);
+ for (size_t i = 0; i < longhandCount; ++i)
+ longhands[i] = CSSValueList::createCommaSeparated();
+
+ do {
+ bool parsedLonghand[8] = { false };
+ do {
+ bool foundProperty = false;
+ for (size_t i = 0; i < longhandCount; ++i) {
+ if (parsedLonghand[i])
+ continue;
+
+ if (RefPtrWillBeRawPtr<CSSValue> value = consumeAnimationValue(shorthand.properties()[i], m_range, m_context, useLegacyParsing)) {
+ parsedLonghand[i] = true;
+ foundProperty = true;
+ longhands[i]->append(value.release());
+ break;
+ }
+ }
+ if (!foundProperty)
+ return false;
+ } while (!m_range.atEnd() && m_range.peek().type() != CommaToken);
+
+ // TODO(timloh): This will make invalid longhands, see crbug.com/386459
+ for (size_t i = 0; i < longhandCount; ++i) {
+ if (!parsedLonghand[i])
+ longhands[i]->append(cssValuePool().createImplicitInitialValue());
+ parsedLonghand[i] = false;
+ }
+ } while (consumeCommaIncludingWhitespace(m_range));
+
+ for (size_t i = 0; i < longhandCount; ++i) {
+ if (!isValidAnimationPropertyList(shorthand.properties()[i], *longhands[i]))
+ return false;
+ }
+
+ for (size_t i = 0; i < longhandCount; ++i)
+ addProperty(shorthand.properties()[i], longhands[i].release(), important);
+
+ return m_range.atEnd();
+}
+
static PassRefPtrWillBeRawPtr<CSSValue> consumeWidowsOrOrphans(CSSParserTokenRange& range)
{
// Support for auto is non-standard and for backwards compatibility.
@@ -1799,13 +1845,15 @@ bool CSSPropertyParser::consumeColumns(bool important)
return true;
}
-bool CSSPropertyParser::parseShorthand(CSSPropertyID propId, bool important)
+bool CSSPropertyParser::parseShorthand(CSSPropertyID unresolvedProperty, bool important)
{
+ CSSPropertyID property = resolveCSSPropertyID(unresolvedProperty);
+
m_range.consumeWhitespace();
CSSPropertyID oldShorthand = m_currentShorthand;
// TODO(rob.buis): Remove this when the legacy property parser is gone
- m_currentShorthand = propId;
- switch (propId) {
+ m_currentShorthand = property;
+ switch (property) {
case CSSPropertyWebkitMarginCollapse: {
CSSValueID id = m_range.consumeIncludingWhitespace().id();
if (!CSSParserFastPaths::isValidKeywordPropertyAndValue(CSSPropertyWebkitMarginBeforeCollapse, id))
@@ -1857,6 +1905,10 @@ bool CSSPropertyParser::parseShorthand(CSSPropertyID propId, bool important)
m_currentShorthand = oldShorthand;
return consumeColumns(important);
}
+ case CSSPropertyAnimation:
+ return consumeAnimationShorthand(animationShorthandForParsing(), unresolvedProperty == CSSPropertyAliasWebkitAnimation, important);
+ case CSSPropertyTransition:
+ return consumeAnimationShorthand(transitionShorthandForParsing(), false, important);
default:
m_currentShorthand = oldShorthand;
return false;

Powered by Google App Engine
This is Rietveld 408576698