| Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| index dab7c64be77625807368f76c55058e48e345a2ee..56824d1b097f127be757d5def1b541217a5dc00e 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| @@ -128,7 +128,7 @@ RefPtr<ComputedStyle> ComputedStyle::Clone(const ComputedStyle& other) {
|
| ALWAYS_INLINE ComputedStyle::ComputedStyle()
|
| : ComputedStyleBase(), RefCounted<ComputedStyle>() {
|
| rare_non_inherited_data_.Init();
|
| - rare_non_inherited_data_.Access()->deprecated_flexible_box_data_data_.Init();
|
| + rare_non_inherited_data_.Access()->deprecated_flexible_box_data_.Init();
|
| rare_non_inherited_data_.Access()->flexible_box_data_.Init();
|
| rare_non_inherited_data_.Access()->multi_col_data_.Init();
|
| rare_non_inherited_data_.Access()->transform_data_.Init();
|
| @@ -587,11 +587,11 @@ bool ComputedStyle::DiffNeedsFullLayoutAndPaintInvalidation(
|
| *other.rare_non_inherited_data_->grid_item_data_.Get())
|
| return true;
|
|
|
| - if (rare_non_inherited_data_->deprecated_flexible_box_data_data_.Get() !=
|
| - other.rare_non_inherited_data_->deprecated_flexible_box_data_data_
|
| + if (rare_non_inherited_data_->deprecated_flexible_box_data_.Get() !=
|
| + other.rare_non_inherited_data_->deprecated_flexible_box_data_
|
| .Get() &&
|
| - *rare_non_inherited_data_->deprecated_flexible_box_data_data_.Get() !=
|
| - *other.rare_non_inherited_data_->deprecated_flexible_box_data_data_
|
| + *rare_non_inherited_data_->deprecated_flexible_box_data_.Get() !=
|
| + *other.rare_non_inherited_data_->deprecated_flexible_box_data_
|
| .Get())
|
| return true;
|
|
|
|
|