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

Unified Diff: Source/core/rendering/style/StyleRareNonInheritedData.cpp

Issue 643893002: Store [-webkit-]perspective-origin as a LengthPoint. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase (again). Created 6 years, 2 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/rendering/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/rendering/style/StyleRareNonInheritedData.cpp
diff --git a/Source/core/rendering/style/StyleRareNonInheritedData.cpp b/Source/core/rendering/style/StyleRareNonInheritedData.cpp
index 0a203e3ebe019845b359d7c1af01591f5769f92e..a96d6e221c094e282e1c8e5bd836c46c254e3426 100644
--- a/Source/core/rendering/style/StyleRareNonInheritedData.cpp
+++ b/Source/core/rendering/style/StyleRareNonInheritedData.cpp
@@ -37,8 +37,7 @@ StyleRareNonInheritedData::StyleRareNonInheritedData()
, m_aspectRatioDenominator(RenderStyle::initialAspectRatioDenominator())
, m_aspectRatioNumerator(RenderStyle::initialAspectRatioNumerator())
, m_perspective(RenderStyle::initialPerspective())
- , m_perspectiveOriginX(RenderStyle::initialPerspectiveOriginX())
- , m_perspectiveOriginY(RenderStyle::initialPerspectiveOriginY())
+ , m_perspectiveOrigin(RenderStyle::initialPerspectiveOrigin())
, lineClamp(RenderStyle::initialLineClamp())
, m_draggableRegionMode(DraggableRegionNone)
, m_mask(MaskFillLayer, true)
@@ -104,8 +103,7 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited
, m_aspectRatioDenominator(o.m_aspectRatioDenominator)
, m_aspectRatioNumerator(o.m_aspectRatioNumerator)
, m_perspective(o.m_perspective)
- , m_perspectiveOriginX(o.m_perspectiveOriginX)
- , m_perspectiveOriginY(o.m_perspectiveOriginY)
+ , m_perspectiveOrigin(o.m_perspectiveOrigin)
, lineClamp(o.lineClamp)
, m_draggableRegionMode(o.m_draggableRegionMode)
, m_deprecatedFlexibleBox(o.m_deprecatedFlexibleBox)
@@ -193,8 +191,7 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c
&& m_aspectRatioDenominator == o.m_aspectRatioDenominator
&& m_aspectRatioNumerator == o.m_aspectRatioNumerator
&& m_perspective == o.m_perspective
- && m_perspectiveOriginX == o.m_perspectiveOriginX
- && m_perspectiveOriginY == o.m_perspectiveOriginY
+ && m_perspectiveOrigin == o.m_perspectiveOrigin
&& lineClamp == o.lineClamp
&& m_draggableRegionMode == o.m_draggableRegionMode
&& m_deprecatedFlexibleBox == o.m_deprecatedFlexibleBox
« no previous file with comments | « Source/core/rendering/style/StyleRareNonInheritedData.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698