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

Unified Diff: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp

Issue 2223133004: Removed Wrap-Flow and Wrap-Through from ComputedStyle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed stale comment and rebase Created 4 years, 4 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 | « third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
diff --git a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
index b0c513d36a2f4ac1d7dbe220cca2080dac95d23d..707197cbf0ad05b2e7cb31d20b2c677122d43abe 100644
--- a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
+++ b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
@@ -103,8 +103,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData()
, marginAfterCollapse(MarginCollapseCollapse)
, m_appearance(ComputedStyle::initialAppearance())
, m_textDecorationStyle(ComputedStyle::initialTextDecorationStyle())
- , m_wrapFlow(ComputedStyle::initialWrapFlow())
- , m_wrapThrough(ComputedStyle::initialWrapThrough())
, m_hasCurrentOpacityAnimation(false)
, m_hasCurrentTransformAnimation(false)
, m_hasCurrentFilterAnimation(false)
@@ -186,8 +184,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited
, marginAfterCollapse(o.marginAfterCollapse)
, m_appearance(o.m_appearance)
, m_textDecorationStyle(o.m_textDecorationStyle)
- , m_wrapFlow(o.m_wrapFlow)
- , m_wrapThrough(o.m_wrapThrough)
, m_hasCurrentOpacityAnimation(o.m_hasCurrentOpacityAnimation)
, m_hasCurrentTransformAnimation(o.m_hasCurrentTransformAnimation)
, m_hasCurrentFilterAnimation(o.m_hasCurrentFilterAnimation)
@@ -273,8 +269,6 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c
&& marginAfterCollapse == o.marginAfterCollapse
&& m_appearance == o.m_appearance
&& m_textDecorationStyle == o.m_textDecorationStyle
- && m_wrapFlow == o.m_wrapFlow
- && m_wrapThrough == o.m_wrapThrough
&& m_hasCurrentOpacityAnimation == o.m_hasCurrentOpacityAnimation
&& m_hasCurrentTransformAnimation == o.m_hasCurrentTransformAnimation
&& m_hasCurrentFilterAnimation == o.m_hasCurrentFilterAnimation
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698