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

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

Issue 2735093005: Implemented the CSSPropertyAPI for the line-height property. (Closed)
Patch Set: rebased Created 3 years, 9 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 5356ba494024787c18694d084a9e00b9a0fbf747..bca8aefe38b521f785e80ba23e0332923f837a16 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSPropertyParser.cpp
@@ -1912,9 +1912,6 @@ const CSSValue* CSSPropertyParser::parseSingleValue(
return CSSPropertyFontUtils::consumeFontFamily(m_range);
case CSSPropertyFontWeight:
return CSSPropertyFontUtils::consumeFontWeight(m_range);
- case CSSPropertyLineHeight:
- return CSSPropertyFontUtils::consumeLineHeight(m_range,
- m_context->mode());
case CSSPropertyWebkitBorderHorizontalSpacing:
case CSSPropertyWebkitBorderVerticalSpacing:
return consumeLength(m_range, m_context->mode(), ValueRangeNonNegative);

Powered by Google App Engine
This is Rietveld 408576698