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

Unified Diff: Source/core/style/StyleRareInheritedData.cpp

Issue 1328673003: Remove -webkit-line-box-contain implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix up a few more tests. Created 5 years, 3 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/style/StyleRareInheritedData.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/style/StyleRareInheritedData.cpp
diff --git a/Source/core/style/StyleRareInheritedData.cpp b/Source/core/style/StyleRareInheritedData.cpp
index e0d73d93c06f3af61072ae5868ff1a9176e1b55c..d12593a9956a1c60757ca018adcd4ad5fc644c92 100644
--- a/Source/core/style/StyleRareInheritedData.cpp
+++ b/Source/core/style/StyleRareInheritedData.cpp
@@ -89,7 +89,6 @@ StyleRareInheritedData::StyleRareInheritedData()
, m_textCombine(ComputedStyle::initialTextCombine())
, m_textIndentLine(ComputedStyle::initialTextIndentLine())
, m_textIndentType(ComputedStyle::initialTextIndentLine())
- , m_lineBoxContain(ComputedStyle::initialLineBoxContain())
, m_imageRendering(ComputedStyle::initialImageRendering())
, m_textUnderlinePosition(ComputedStyle::initialTextUnderlinePosition())
, m_rubyPosition(ComputedStyle::initialRubyPosition())
@@ -145,7 +144,6 @@ StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
, m_textCombine(o.m_textCombine)
, m_textIndentLine(o.m_textIndentLine)
, m_textIndentType(o.m_textIndentType)
- , m_lineBoxContain(o.m_lineBoxContain)
, m_imageRendering(o.m_imageRendering)
, m_textUnderlinePosition(o.m_textUnderlinePosition)
, m_rubyPosition(o.m_rubyPosition)
@@ -212,7 +210,6 @@ bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const
&& m_textCombine == o.m_textCombine
&& m_textIndentLine == o.m_textIndentLine
&& m_textIndentType == o.m_textIndentType
- && m_lineBoxContain == o.m_lineBoxContain
&& m_subtreeWillChangeContents == o.m_subtreeWillChangeContents
&& m_selfOrAncestorHasDirAutoAttribute == o.m_selfOrAncestorHasDirAutoAttribute
&& m_respectImageOrientation == o.m_respectImageOrientation
« no previous file with comments | « Source/core/style/StyleRareInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698