| 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 188a8de794bf4f3f730d990d287bf196d73d5551..f15fa802a452294128d6bcaffcdd8940a5400d6f 100644
|
| --- a/sky/engine/core/rendering/style/RenderStyle.h
|
| +++ b/sky/engine/core/rendering/style/RenderStyle.h
|
| @@ -716,8 +716,6 @@ public:
|
|
|
| EImageRendering imageRendering() const { return static_cast<EImageRendering>(rareInheritedData->m_imageRendering); }
|
|
|
| - ESpeak speak() const { return static_cast<ESpeak>(rareInheritedData->speak); }
|
| -
|
| FilterOperations& mutableFilter() { return rareNonInheritedData.access()->m_filter.access()->m_operations; }
|
| const FilterOperations& filter() const { return rareNonInheritedData->m_filter->m_operations; }
|
| bool hasFilter() const { return !rareNonInheritedData->m_filter->m_operations.operations().isEmpty(); }
|
| @@ -972,7 +970,6 @@ public:
|
| void setTransformOriginX(const Length& l) { SET_VAR(rareNonInheritedData.access()->m_transform, m_x, l); }
|
| void setTransformOriginY(const Length& l) { SET_VAR(rareNonInheritedData.access()->m_transform, m_y, l); }
|
| void setTransformOriginZ(float f) { SET_VAR(rareNonInheritedData.access()->m_transform, m_z, f); }
|
| - void setSpeak(ESpeak s) { SET_VAR(rareInheritedData, speak, s); }
|
| void setTextDecorationColor(const StyleColor& c) { SET_VAR(rareNonInheritedData, m_textDecorationColor, c); }
|
| void setTextEmphasisColor(const StyleColor& c) { SET_VAR_WITH_SETTER(rareInheritedData, textEmphasisColor, setTextEmphasisColor, c); }
|
| void setTextEmphasisFill(TextEmphasisFill fill) { SET_VAR(rareInheritedData, textEmphasisFill, fill); }
|
| @@ -1159,7 +1156,6 @@ public:
|
| static EOverflowWrap initialOverflowWrap() { return NormalOverflowWrap; }
|
| static LineBreak initialLineBreak() { return LineBreakAuto; }
|
| static const AtomicString& initialHighlight() { return nullAtom; }
|
| - static ESpeak initialSpeak() { return SpeakNormal; }
|
| static const AtomicString& initialHyphenationString() { return nullAtom; }
|
| static const AtomicString& initialLocale() { return nullAtom; }
|
| static bool initialHasAspectRatio() { return false; }
|
|
|