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

Unified Diff: sky/engine/core/rendering/style/StyleRareInheritedData.cpp

Issue 710113003: Initial step of removing CSS zoom related properties. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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: sky/engine/core/rendering/style/StyleRareInheritedData.cpp
diff --git a/sky/engine/core/rendering/style/StyleRareInheritedData.cpp b/sky/engine/core/rendering/style/StyleRareInheritedData.cpp
index c7d62a96e3d7ddd8d972624ce78c4a4a85b5ae0f..7b9844bf7e0de9402c4498e6ccb9dc35703ad2c1 100644
--- a/sky/engine/core/rendering/style/StyleRareInheritedData.cpp
+++ b/sky/engine/core/rendering/style/StyleRareInheritedData.cpp
@@ -57,7 +57,6 @@ StyleRareInheritedData::StyleRareInheritedData()
: listStyleImage(RenderStyle::initialListStyleImage())
, textStrokeWidth(RenderStyle::initialTextStrokeWidth())
, indent(RenderStyle::initialTextIndent())
- , m_effectiveZoom(RenderStyle::initialZoom())
, widows(RenderStyle::initialWidows())
, orphans(RenderStyle::initialOrphans())
, m_hasAutoWidows(true)
@@ -104,7 +103,6 @@ StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
, highlight(o.highlight)
, cursorData(o.cursorData)
, indent(o.indent)
- , m_effectiveZoom(o.m_effectiveZoom)
, widows(o.widows)
, orphans(o.orphans)
, m_hasAutoWidows(o.m_hasAutoWidows)
@@ -159,7 +157,6 @@ bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const
&& highlight == o.highlight
&& dataEquivalent(cursorData.get(), o.cursorData.get())
&& indent == o.indent
- && m_effectiveZoom == o.m_effectiveZoom
&& widows == o.widows
&& orphans == o.orphans
&& m_hasAutoWidows == o.m_hasAutoWidows
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareInheritedData.h ('k') | sky/engine/core/rendering/style/StyleVisualData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698