| Index: third_party/WebKit/Source/core/style/StyleInheritedData.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/StyleInheritedData.cpp b/third_party/WebKit/Source/core/style/StyleInheritedData.cpp
|
| index 9d10ce7235464ad3077497c4fb2f461764050f6c..a1c01d47a5ba10958be38200e57deae75c6da97a 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleInheritedData.cpp
|
| +++ b/third_party/WebKit/Source/core/style/StyleInheritedData.cpp
|
| @@ -32,7 +32,8 @@ StyleInheritedData::StyleInheritedData()
|
| line_height(ComputedStyle::initialLineHeight()),
|
| color(ComputedStyle::initialColor()),
|
| visitedLinkColor(ComputedStyle::initialColor()),
|
| - textAutosizingMultiplier(1) {}
|
| + textAutosizingMultiplier(1),
|
| + textAutosizingFingerPrint(0) {}
|
|
|
| StyleInheritedData::~StyleInheritedData() {}
|
|
|
| @@ -44,14 +45,16 @@ StyleInheritedData::StyleInheritedData(const StyleInheritedData& o)
|
| font(o.font),
|
| color(o.color),
|
| visitedLinkColor(o.visitedLinkColor),
|
| - textAutosizingMultiplier(o.textAutosizingMultiplier) {}
|
| + textAutosizingMultiplier(o.textAutosizingMultiplier),
|
| + textAutosizingFingerPrint(o.textAutosizingFingerPrint) {}
|
|
|
| bool StyleInheritedData::operator==(const StyleInheritedData& o) const {
|
| return line_height == o.line_height && font == o.font && color == o.color &&
|
| visitedLinkColor == o.visitedLinkColor &&
|
| horizontal_border_spacing == o.horizontal_border_spacing &&
|
| textAutosizingMultiplier == o.textAutosizingMultiplier &&
|
| - vertical_border_spacing == o.vertical_border_spacing;
|
| + vertical_border_spacing == o.vertical_border_spacing &&
|
| + textAutosizingFingerPrint == o.textAutosizingFingerPrint;
|
| }
|
|
|
| } // namespace blink
|
|
|