| Index: Source/core/rendering/style/StyleInheritedData.cpp
|
| diff --git a/Source/core/rendering/style/StyleInheritedData.cpp b/Source/core/rendering/style/StyleInheritedData.cpp
|
| index 063e7d2286c1d6b6eeadf1a41acfab3ca9e2d59d..1b961aa497e9e8a640a0b35ebda7f610b831622e 100644
|
| --- a/Source/core/rendering/style/StyleInheritedData.cpp
|
| +++ b/Source/core/rendering/style/StyleInheritedData.cpp
|
| @@ -32,6 +32,7 @@ StyleInheritedData::StyleInheritedData()
|
| , line_height(RenderStyle::initialLineHeight())
|
| , color(RenderStyle::initialColor())
|
| , visitedLinkColor(RenderStyle::initialColor())
|
| + , textAutosizingMultiplier(1)
|
| {
|
| }
|
|
|
| @@ -47,6 +48,7 @@ StyleInheritedData::StyleInheritedData(const StyleInheritedData& o)
|
| , font(o.font)
|
| , color(o.color)
|
| , visitedLinkColor(o.visitedLinkColor)
|
| + , textAutosizingMultiplier(o.textAutosizingMultiplier)
|
| {
|
| }
|
|
|
| @@ -57,6 +59,7 @@ bool StyleInheritedData::operator==(const StyleInheritedData& o) const
|
| && color == o.color
|
| && visitedLinkColor == o.visitedLinkColor
|
| && horizontal_border_spacing == o.horizontal_border_spacing
|
| + && textAutosizingMultiplier == o.textAutosizingMultiplier
|
| && vertical_border_spacing == o.vertical_border_spacing;
|
| }
|
|
|
|
|