| 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..4e9f536eafaa2d3d69d4a62d0e4b796094faaad1 100644
|
| --- a/Source/core/rendering/style/StyleRareNonInheritedData.cpp
|
| +++ b/Source/core/rendering/style/StyleRareNonInheritedData.cpp
|
| @@ -34,8 +34,6 @@ namespace blink {
|
|
|
| StyleRareNonInheritedData::StyleRareNonInheritedData()
|
| : opacity(RenderStyle::initialOpacity())
|
| - , m_aspectRatioDenominator(RenderStyle::initialAspectRatioDenominator())
|
| - , m_aspectRatioNumerator(RenderStyle::initialAspectRatioNumerator())
|
| , m_perspective(RenderStyle::initialPerspective())
|
| , m_perspectiveOriginX(RenderStyle::initialPerspectiveOriginX())
|
| , m_perspectiveOriginY(RenderStyle::initialPerspectiveOriginY())
|
| @@ -81,7 +79,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData()
|
| , m_runningOpacityAnimationOnCompositor(false)
|
| , m_runningTransformAnimationOnCompositor(false)
|
| , m_runningFilterAnimationOnCompositor(false)
|
| - , m_hasAspectRatio(false)
|
| , m_effectiveBlendMode(RenderStyle::initialBlendMode())
|
| , m_touchAction(RenderStyle::initialTouchAction())
|
| , m_objectFit(RenderStyle::initialObjectFit())
|
| @@ -101,8 +98,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData()
|
| StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInheritedData& o)
|
| : RefCounted<StyleRareNonInheritedData>()
|
| , opacity(o.opacity)
|
| - , 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)
|
| @@ -164,7 +159,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited
|
| , m_runningOpacityAnimationOnCompositor(o.m_runningOpacityAnimationOnCompositor)
|
| , m_runningTransformAnimationOnCompositor(o.m_runningTransformAnimationOnCompositor)
|
| , m_runningFilterAnimationOnCompositor(o.m_runningFilterAnimationOnCompositor)
|
| - , m_hasAspectRatio(o.m_hasAspectRatio)
|
| , m_effectiveBlendMode(o.m_effectiveBlendMode)
|
| , m_touchAction(o.m_touchAction)
|
| , m_objectFit(o.m_objectFit)
|
| @@ -190,8 +184,6 @@ StyleRareNonInheritedData::~StyleRareNonInheritedData()
|
| bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) const
|
| {
|
| return opacity == o.opacity
|
| - && 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
|
| @@ -252,7 +244,6 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c
|
| && m_hasCurrentTransformAnimation == o.m_hasCurrentTransformAnimation
|
| && m_hasCurrentFilterAnimation == o.m_hasCurrentFilterAnimation
|
| && m_effectiveBlendMode == o.m_effectiveBlendMode
|
| - && m_hasAspectRatio == o.m_hasAspectRatio
|
| && m_touchAction == o.m_touchAction
|
| && m_objectFit == o.m_objectFit
|
| && m_isolation == o.m_isolation
|
|
|