| Index: Source/core/rendering/style/StyleVisualData.h
|
| diff --git a/Source/core/rendering/style/StyleVisualData.h b/Source/core/rendering/style/StyleVisualData.h
|
| index 2657b93ceecb0d8ed6bbcfb1102af1ea1ba28cbe..ed79ea1aece7c31d592a97c4696a839135de69eb 100644
|
| --- a/Source/core/rendering/style/StyleVisualData.h
|
| +++ b/Source/core/rendering/style/StyleVisualData.h
|
| @@ -43,7 +43,6 @@ public:
|
| return clip == o.clip
|
| && hasClip == o.hasClip
|
| && textDecoration == o.textDecoration
|
| - && m_textAutosizingMultiplier == o.m_textAutosizingMultiplier
|
| && m_zoom == o.m_zoom;
|
| }
|
| bool operator!=(const StyleVisualData& o) const { return !(*this == o); }
|
| @@ -52,7 +51,6 @@ public:
|
| bool hasClip : 1;
|
| unsigned textDecoration : TextDecorationBits; // Text decorations defined *only* by this element.
|
|
|
| - float m_textAutosizingMultiplier;
|
| float m_zoom;
|
|
|
| private:
|
|
|