| Index: sky/engine/core/rendering/style/StyleRareInheritedData.cpp
|
| diff --git a/sky/engine/core/rendering/style/StyleRareInheritedData.cpp b/sky/engine/core/rendering/style/StyleRareInheritedData.cpp
|
| index af31ae3ba8fa61183da47feebf517b28538f9149..c7d62a96e3d7ddd8d972624ce78c4a4a85b5ae0f 100644
|
| --- a/sky/engine/core/rendering/style/StyleRareInheritedData.cpp
|
| +++ b/sky/engine/core/rendering/style/StyleRareInheritedData.cpp
|
| @@ -69,7 +69,6 @@ StyleRareInheritedData::StyleRareInheritedData()
|
| , wordBreak(RenderStyle::initialWordBreak())
|
| , overflowWrap(RenderStyle::initialOverflowWrap())
|
| , lineBreak(LineBreakAuto)
|
| - , resize(RenderStyle::initialResize())
|
| , userSelect(RenderStyle::initialUserSelect())
|
| , speak(SpeakNormal)
|
| , hyphens(HyphensManual)
|
| @@ -117,7 +116,6 @@ StyleRareInheritedData::StyleRareInheritedData(const StyleRareInheritedData& o)
|
| , wordBreak(o.wordBreak)
|
| , overflowWrap(o.overflowWrap)
|
| , lineBreak(o.lineBreak)
|
| - , resize(o.resize)
|
| , userSelect(o.userSelect)
|
| , speak(o.speak)
|
| , hyphens(o.hyphens)
|
| @@ -173,7 +171,6 @@ bool StyleRareInheritedData::operator==(const StyleRareInheritedData& o) const
|
| && wordBreak == o.wordBreak
|
| && overflowWrap == o.overflowWrap
|
| && lineBreak == o.lineBreak
|
| - && resize == o.resize
|
| && userSelect == o.userSelect
|
| && speak == o.speak
|
| && hyphens == o.hyphens
|
|
|