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

Unified Diff: Source/core/css/CSSPrimitiveValue.cpp

Issue 112933010: Split out CSSParser public API Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 12 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: Source/core/css/CSSPrimitiveValue.cpp
diff --git a/Source/core/css/CSSPrimitiveValue.cpp b/Source/core/css/CSSPrimitiveValue.cpp
index 3e6391ccf09162ce82337d19da2c9fcebc353d7f..4c526924c7f2e080c91e2bfdcf85d4efd262d444 100644
--- a/Source/core/css/CSSPrimitiveValue.cpp
+++ b/Source/core/css/CSSPrimitiveValue.cpp
@@ -705,8 +705,8 @@ double CSSPrimitiveValue::getDoubleValue() const
CSSPrimitiveValue::UnitTypes CSSPrimitiveValue::canonicalUnitTypeForCategory(UnitCategory category)
{
- // The canonical unit type is chosen according to the way BisonCSSParser::validUnit() chooses the default unit
- // in each category (based on unitflags).
+ // The canonical unit type is chosen according to the way CSSParser::validUnit()
+ // chooses the default unit in each category (based on unitflags).
switch (category) {
case UNumber:
return CSS_NUMBER;
@@ -759,7 +759,8 @@ bool CSSPrimitiveValue::getDoubleValueInternal(UnitTypes requestedUnitType, doub
}
if (sourceUnitType == CSS_NUMBER) {
- // We interpret conversion from CSS_NUMBER in the same way as BisonCSSParser::validUnit() while using non-strict mode.
+ // We interpret conversion from CSS_NUMBER in the same way as
+ // CSSParser::validUnit() while using non-strict mode.
sourceUnitType = canonicalUnitTypeForCategory(targetCategory);
if (sourceUnitType == CSS_UNKNOWN)
return false;

Powered by Google App Engine
This is Rietveld 408576698