| Index: third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
|
| index 73d84116dfaaf113c2a15c1cf7c63ba4c306ca16..fb6615bcb9bf3e46bbe9df34f18ecd6d97b5d4ef 100644
|
| --- a/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
|
| +++ b/third_party/WebKit/Source/core/style/StyleRareNonInheritedData.cpp
|
| @@ -143,7 +143,7 @@ StyleRareNonInheritedData::StyleRareNonInheritedData(
|
| object_position_(o.object_position_),
|
| line_clamp_(o.line_clamp_),
|
| draggable_region_mode_(o.draggable_region_mode_),
|
| - deprecated_flexible_box_data_data_(o.deprecated_flexible_box_data_data_),
|
| + deprecated_flexible_box_data_(o.deprecated_flexible_box_data_),
|
| flexible_box_data_(o.flexible_box_data_),
|
| multi_col_data_(o.multi_col_data_),
|
| transform_data_(o.transform_data_),
|
| @@ -236,8 +236,7 @@ bool StyleRareNonInheritedData::operator==(
|
| object_position_ == o.object_position_ &&
|
| line_clamp_ == o.line_clamp_ &&
|
| draggable_region_mode_ == o.draggable_region_mode_ &&
|
| - deprecated_flexible_box_data_data_ ==
|
| - o.deprecated_flexible_box_data_data_ &&
|
| + deprecated_flexible_box_data_ == o.deprecated_flexible_box_data_ &&
|
| flexible_box_data_ == o.flexible_box_data_ &&
|
| multi_col_data_ == o.multi_col_data_ &&
|
| transform_data_ == o.transform_data_ &&
|
|
|