| Index: sky/engine/core/rendering/style/RenderStyle.h
|
| diff --git a/sky/engine/core/rendering/style/RenderStyle.h b/sky/engine/core/rendering/style/RenderStyle.h
|
| index bbab268fb065e1661e8be51b55fd8c3d823dcaff..69d1b53b057107ab8992bddeb1d2ae67986198f0 100644
|
| --- a/sky/engine/core/rendering/style/RenderStyle.h
|
| +++ b/sky/engine/core/rendering/style/RenderStyle.h
|
| @@ -757,7 +757,6 @@ public:
|
| const AtomicString& highlight() const { return rareInheritedData->highlight; }
|
| const AtomicString& hyphenationString() const { return rareInheritedData->hyphenationString; }
|
| const AtomicString& locale() const { return rareInheritedData->locale; }
|
| - EBorderFit borderFit() const { return static_cast<EBorderFit>(rareNonInheritedData->m_borderFit); }
|
| EResize resize() const { return static_cast<EResize>(rareInheritedData->resize); }
|
| bool hasInlineTransform() const { return rareNonInheritedData->m_hasInlineTransform; }
|
| const TransformOperations& transform() const { return rareNonInheritedData->m_transform->m_operations; }
|
| @@ -1176,7 +1175,6 @@ public:
|
| void setHyphens(Hyphens h) { SET_VAR(rareInheritedData, hyphens, h); }
|
| void setHyphenationString(const AtomicString& h) { SET_VAR(rareInheritedData, hyphenationString, h); }
|
| void setLocale(const AtomicString& locale) { SET_VAR(rareInheritedData, locale, locale); }
|
| - void setBorderFit(EBorderFit b) { SET_VAR(rareNonInheritedData, m_borderFit, b); }
|
| void setResize(EResize r) { SET_VAR(rareInheritedData, resize, r); }
|
| void setHasInlineTransform(bool b) { SET_VAR(rareNonInheritedData, m_hasInlineTransform, b); }
|
| void setTransform(const TransformOperations& ops) { SET_VAR(rareNonInheritedData.access()->m_transform, m_operations, ops); }
|
| @@ -1426,7 +1424,6 @@ public:
|
| static ESpeak initialSpeak() { return SpeakNormal; }
|
| static const AtomicString& initialHyphenationString() { return nullAtom; }
|
| static const AtomicString& initialLocale() { return nullAtom; }
|
| - static EBorderFit initialBorderFit() { return BorderFitBorder; }
|
| static EResize initialResize() { return RESIZE_NONE; }
|
| static bool initialHasAspectRatio() { return false; }
|
| static float initialAspectRatioDenominator() { return 1; }
|
|
|