Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.cpp

Issue 2850173003: Move LengthSizes border-*-radius out of BorderData (Closed)
Patch Set: Rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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.RadiiEqual(table_part.StyleRef()) ||
21 (diff.TextDecorationOrColorChanged() && 22 (diff.TextDecorationOrColorChanged() &&
22 table_part.StyleRef().HasBorderColorReferencingCurrentColor())) 23 table_part.StyleRef().HasBorderColorReferencingCurrentColor()))
23 table.InvalidateCollapsedBorders(); 24 table.InvalidateCollapsedBorders();
24 } 25 }
25 26
26 bool LayoutTableBoxComponent::DoCellsHaveDirtyWidth( 27 bool LayoutTableBoxComponent::DoCellsHaveDirtyWidth(
27 const LayoutObject& table_part, 28 const LayoutObject& table_part,
28 const LayoutTable& table, 29 const LayoutTable& table,
29 const StyleDifference& diff, 30 const StyleDifference& diff,
30 const ComputedStyle& old_style) { 31 const ComputedStyle& old_style) {
(...skipping 23 matching lines...) Expand all
54 auto& box = static_cast<LayoutTableBoxComponent&>(layout_object_); 55 auto& box = static_cast<LayoutTableBoxComponent&>(layout_object_);
55 if (box.last_paint_result_ != kFullyPainted && 56 if (box.last_paint_result_ != kFullyPainted &&
56 box.last_paint_rect_ != paint_rect) 57 box.last_paint_rect_ != paint_rect)
57 layout_object_.SetDisplayItemsUncached(); 58 layout_object_.SetDisplayItemsUncached();
58 59
59 box.last_paint_result_ = paint_result; 60 box.last_paint_result_ = paint_result;
60 box.last_paint_rect_ = paint_rect; 61 box.last_paint_rect_ = paint_rect;
61 } 62 }
62 63
63 } // namespace blink 64 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutBox.cpp ('k') | third_party/WebKit/Source/core/style/BorderData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698