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

Unified Diff: sky/engine/core/rendering/style/StyleVisualData.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
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareInheritedData.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sky/engine/core/rendering/style/StyleVisualData.cpp
diff --git a/sky/engine/core/rendering/style/StyleVisualData.cpp b/sky/engine/core/rendering/style/StyleVisualData.cpp
index e1f87a587ea08961b9326fdc2695cc52038d88a8..8ba861c00f9988a128735f3faa6c1cea7a24424f 100644
--- a/sky/engine/core/rendering/style/StyleVisualData.cpp
+++ b/sky/engine/core/rendering/style/StyleVisualData.cpp
@@ -29,7 +29,8 @@ namespace blink {
StyleVisualData::StyleVisualData()
: hasAutoClip(true)
, textDecoration(RenderStyle::initialTextDecoration())
- , m_zoom(RenderStyle::initialZoom())
+ // FIXME(sky): Remove
+ , m_zoom(1.0f)
{
}
@@ -42,7 +43,8 @@ StyleVisualData::StyleVisualData(const StyleVisualData& o)
, clip(o.clip)
, hasAutoClip(o.hasAutoClip)
, textDecoration(o.textDecoration)
- , m_zoom(RenderStyle::initialZoom())
+ // FIXME(sky): Remove
+ , m_zoom(1.0f)
{
}
« no previous file with comments | « sky/engine/core/rendering/style/StyleRareInheritedData.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698