| Index: sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp
|
| diff --git a/sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp b/sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp
|
| index d06140b2169904c6b1e5a1a24c8eef9a91a5ed6d..879d075faf416dc8485675d2ddccc413673d0174 100644
|
| --- a/sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp
|
| +++ b/sky/engine/core/rendering/style/StyleRareNonInheritedData.cpp
|
| @@ -65,7 +65,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData()
|
| , m_justifyItemsPositionType(RenderStyle::initialJustifyItemsPositionType())
|
| , m_justifySelf(RenderStyle::initialJustifySelf())
|
| , m_justifySelfOverflowAlignment(RenderStyle::initialJustifySelfOverflowAlignment())
|
| - , m_scrollBehavior(RenderStyle::initialScrollBehavior())
|
| , m_requiresAcceleratedCompositingForExternalReasons(false)
|
| {
|
| m_maskBoxImage.setMaskDefaults();
|
| @@ -116,7 +115,6 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(const StyleRareNonInherited
|
| , m_justifyItemsPositionType(o.m_justifyItemsPositionType)
|
| , m_justifySelf(o.m_justifySelf)
|
| , m_justifySelfOverflowAlignment(o.m_justifySelfOverflowAlignment)
|
| - , m_scrollBehavior(o.m_scrollBehavior)
|
| , m_requiresAcceleratedCompositingForExternalReasons(o.m_requiresAcceleratedCompositingForExternalReasons)
|
| {
|
| }
|
| @@ -170,7 +168,6 @@ bool StyleRareNonInheritedData::operator==(const StyleRareNonInheritedData& o) c
|
| && m_justifyItemsPositionType == o.m_justifyItemsPositionType
|
| && m_justifySelf == o.m_justifySelf
|
| && m_justifySelfOverflowAlignment == o.m_justifySelfOverflowAlignment
|
| - && m_scrollBehavior == o.m_scrollBehavior
|
| && m_requiresAcceleratedCompositingForExternalReasons == o.m_requiresAcceleratedCompositingForExternalReasons;
|
| }
|
|
|
|
|