| Index: Source/WebCore/rendering/style/StyleVisualData.cpp
|
| diff --git a/Source/WebCore/rendering/style/StyleVisualData.cpp b/Source/WebCore/rendering/style/StyleVisualData.cpp
|
| index 628a20acebb618f138052f4bef96892ba1f44dbd..e74eddd151f6d432aaa77b0fccd5ffa451b560c5 100644
|
| --- a/Source/WebCore/rendering/style/StyleVisualData.cpp
|
| +++ b/Source/WebCore/rendering/style/StyleVisualData.cpp
|
| @@ -29,9 +29,7 @@ namespace WebCore {
|
| StyleVisualData::StyleVisualData()
|
| : hasClip(false)
|
| , textDecoration(RenderStyle::initialTextDecoration())
|
| -#if ENABLE(TEXT_AUTOSIZING)
|
| , m_textAutosizingMultiplier(1)
|
| -#endif
|
| , m_zoom(RenderStyle::initialZoom())
|
| {
|
| }
|
| @@ -45,9 +43,7 @@ StyleVisualData::StyleVisualData(const StyleVisualData& o)
|
| , clip(o.clip)
|
| , hasClip(o.hasClip)
|
| , textDecoration(o.textDecoration)
|
| -#if ENABLE(TEXT_AUTOSIZING)
|
| , m_textAutosizingMultiplier(o.m_textAutosizingMultiplier)
|
| -#endif
|
| , m_zoom(RenderStyle::initialZoom())
|
| {
|
| }
|
|
|