| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "core/layout/LayoutTableBoxComponent.h" | 5 #include "core/layout/LayoutTableBoxComponent.h" |
| 6 | 6 |
| 7 #include "core/layout/LayoutTable.h" | 7 #include "core/layout/LayoutTable.h" |
| 8 #include "core/paint/ObjectPaintInvalidator.h" | 8 #include "core/paint/ObjectPaintInvalidator.h" |
| 9 #include "core/style/ComputedStyle.h" | 9 #include "core/style/ComputedStyle.h" |
| 10 | 10 |
| 11 namespace blink { | 11 namespace blink { |
| 12 | 12 |
| 13 void LayoutTableBoxComponent::InvalidateCollapsedBordersOnStyleChange( | 13 void LayoutTableBoxComponent::InvalidateCollapsedBordersOnStyleChange( |
| 14 const LayoutObject& table_part, | 14 const LayoutObject& table_part, |
| 15 LayoutTable& table, | 15 LayoutTable& table, |
| 16 const StyleDifference& diff, | 16 const StyleDifference& diff, |
| 17 const ComputedStyle& old_style) { | 17 const ComputedStyle& old_style) { |
| 18 if (!table.ShouldCollapseBorders()) | 18 if (!table.ShouldCollapseBorders()) |
| 19 return; | 19 return; |
| 20 if (old_style.Border() != table_part.StyleRef().Border() || | 20 if (old_style.Border() != table_part.StyleRef().Border() || |
| 21 !old_style.BorderColorEquals(table_part.StyleRef()) || |
| 21 !old_style.RadiiEqual(table_part.StyleRef()) || | 22 !old_style.RadiiEqual(table_part.StyleRef()) || |
| 22 !old_style.BorderSizeEquals(table_part.StyleRef()) || | 23 !old_style.BorderSizeEquals(table_part.StyleRef()) || |
| 23 (diff.TextDecorationOrColorChanged() && | 24 (diff.TextDecorationOrColorChanged() && |
| 24 table_part.StyleRef().HasBorderColorReferencingCurrentColor())) | 25 table_part.StyleRef().HasBorderColorReferencingCurrentColor())) |
| 25 table.InvalidateCollapsedBorders(); | 26 table.InvalidateCollapsedBorders(); |
| 26 } | 27 } |
| 27 | 28 |
| 28 bool LayoutTableBoxComponent::DoCellsHaveDirtyWidth( | 29 bool LayoutTableBoxComponent::DoCellsHaveDirtyWidth( |
| 29 const LayoutObject& table_part, | 30 const LayoutObject& table_part, |
| 30 const LayoutTable& table, | 31 const LayoutTable& table, |
| (...skipping 25 matching lines...) Expand all Loading... |
| 56 auto& box = static_cast<LayoutTableBoxComponent&>(layout_object_); | 57 auto& box = static_cast<LayoutTableBoxComponent&>(layout_object_); |
| 57 if (box.last_paint_result_ != kFullyPainted && | 58 if (box.last_paint_result_ != kFullyPainted && |
| 58 box.last_paint_rect_ != paint_rect) | 59 box.last_paint_rect_ != paint_rect) |
| 59 layout_object_.SetDisplayItemsUncached(); | 60 layout_object_.SetDisplayItemsUncached(); |
| 60 | 61 |
| 61 box.last_paint_result_ = paint_result; | 62 box.last_paint_result_ = paint_result; |
| 62 box.last_paint_rect_ = paint_rect; | 63 box.last_paint_rect_ = paint_rect; |
| 63 } | 64 } |
| 64 | 65 |
| 65 } // namespace blink | 66 } // namespace blink |
| OLD | NEW |