Index: Source/core/rendering/style/StyleRareNonInheritedData.cpp |
diff --git a/Source/core/rendering/style/StyleRareNonInheritedData.cpp b/Source/core/rendering/style/StyleRareNonInheritedData.cpp |
index 57a5d2f0edf89f0a5a773a77f727e0caeaaa4713..b54b0ea462a46d8e70581a450678749df436684b 100644 |
--- a/Source/core/rendering/style/StyleRareNonInheritedData.cpp |
+++ b/Source/core/rendering/style/StyleRareNonInheritedData.cpp |
@@ -80,6 +80,7 @@ StyleRareNonInheritedData::StyleRareNonInheritedData() |
, m_runningAcceleratedAnimation(false) |
, m_hasAspectRatio(false) |
, m_effectiveBlendMode(RenderStyle::initialBlendMode()) |
+ , m_touchAction(RenderStyle::initialTouchAction()) |
{ |
m_maskBoxImage.setMaskDefaults(); |
} |
@@ -155,6 +156,7 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited |
, m_runningAcceleratedAnimation(o.m_runningAcceleratedAnimation) |
, m_hasAspectRatio(o.m_hasAspectRatio) |
, m_effectiveBlendMode(o.m_effectiveBlendMode) |
+ , m_touchAction(o.m_touchAction) |
{ |
} |
@@ -232,7 +234,8 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c |
&& m_wrapThrough == o.m_wrapThrough |
&& !m_runningAcceleratedAnimation && !o.m_runningAcceleratedAnimation |
&& m_effectiveBlendMode == o.m_effectiveBlendMode |
- && m_hasAspectRatio == o.m_hasAspectRatio; |
+ && m_hasAspectRatio == o.m_hasAspectRatio |
+ && m_touchAction == o.m_touchAction; |
} |
bool StyleRareNonInheritedData::contentDataEquivalent(const StyleRareNonInheritedData& o) const |