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

Unified Diff: Source/core/rendering/RootInlineBox.cpp

Issue 14576017: Implement CSS3TextDecorations runtime flag in favor of CSS3_TEXT (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed a typo in css-properties-as-js-properties-expected-expected.txt Created 7 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: Source/core/rendering/RootInlineBox.cpp
diff --git a/Source/core/rendering/RootInlineBox.cpp b/Source/core/rendering/RootInlineBox.cpp
index edeb3e03160fd5834abacdeceda4f94899756cd6..66577db776a2c4d42c4db241ce4c9eb2c15ea52f 100644
--- a/Source/core/rendering/RootInlineBox.cpp
+++ b/Source/core/rendering/RootInlineBox.cpp
@@ -53,9 +53,7 @@ RootInlineBox::RootInlineBox(RenderBlock* block)
, m_lineBottom(0)
, m_lineTopWithLeading(0)
, m_lineBottomWithLeading(0)
-#if ENABLE(CSS3_TEXT)
, m_maxLogicalTop(0)
-#endif // CSS3_TEXT
{
setIsHorizontal(block->isHorizontalWritingMode());
}
@@ -293,10 +291,8 @@ LayoutUnit RootInlineBox::alignBoxesInBlockDirection(LayoutUnit heightOfBlock, G
heightOfBlock += gridSnapAdjustment;
}
-#if ENABLE(CSS3_TEXT)
m_maxLogicalTop = 0;
computeMaxLogicalTop(m_maxLogicalTop);
-#endif // CSS3_TEXT
return heightOfBlock + maxHeight;
}

Powered by Google App Engine
This is Rietveld 408576698