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

Unified Diff: Source/core/css/parser/CSSParserToken.cpp

Issue 1096963002: Make UseCounters work on aliased properties (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « Source/core/css/parser/CSSParserToken.h ('k') | Source/core/css/parser/CSSPropertyParser.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/parser/CSSParserToken.cpp
diff --git a/Source/core/css/parser/CSSParserToken.cpp b/Source/core/css/parser/CSSParserToken.cpp
index 00344f836df9d34d4144a5a6d420bc0a122f96c2..1beea05e79ec72bfbb255a5bf4b78431d0ff07a1 100644
--- a/Source/core/css/parser/CSSParserToken.cpp
+++ b/Source/core/css/parser/CSSParserToken.cpp
@@ -105,10 +105,10 @@ double CSSParserToken::numericValue() const
return m_numericValue;
}
-CSSPropertyID CSSParserToken::parseAsCSSPropertyID() const
+CSSPropertyID CSSParserToken::parseAsUnresolvedCSSPropertyID() const
{
ASSERT(m_type == IdentToken);
- return cssPropertyID(m_value);
+ return unresolvedCSSPropertyID(m_value);
}
void CSSParserToken::serialize(StringBuilder& builder) const
« no previous file with comments | « Source/core/css/parser/CSSParserToken.h ('k') | Source/core/css/parser/CSSPropertyParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698