| Index: Source/WebCore/rendering/style/RenderStyle.h
|
| diff --git a/Source/WebCore/rendering/style/RenderStyle.h b/Source/WebCore/rendering/style/RenderStyle.h
|
| index a632b104d2fec3af2da6edb922d2334ae5a640ee..3abce1c180ed7e557379e2dbf9d60b0c3d81cebb 100644
|
| --- a/Source/WebCore/rendering/style/RenderStyle.h
|
| +++ b/Source/WebCore/rendering/style/RenderStyle.h
|
| @@ -557,9 +557,7 @@ public:
|
| float computedFontSize() const;
|
| int fontSize() const;
|
|
|
| -#if ENABLE(TEXT_AUTOSIZING)
|
| float textAutosizingMultiplier() const { return visual->m_textAutosizingMultiplier; }
|
| -#endif
|
|
|
| Length textIndent() const { return rareInheritedData->indent; }
|
| #if ENABLE(CSS3_TEXT)
|
| @@ -1100,13 +1098,11 @@ public:
|
| // Only used for blending font sizes when animating, for MathML anonymous blocks, and for text autosizing.
|
| void setFontSize(float);
|
|
|
| -#if ENABLE(TEXT_AUTOSIZING)
|
| void setTextAutosizingMultiplier(float v)
|
| {
|
| SET_VAR(visual, m_textAutosizingMultiplier, v);
|
| setFontSize(fontDescription().specifiedSize());
|
| }
|
| -#endif
|
|
|
| void setColor(const Color&);
|
| void setTextIndent(Length v) { SET_VAR(rareInheritedData, indent, v); }
|
|
|