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

Unified Diff: third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp

Issue 2884573002: Replace LayoutTableCell::AbsoluteColumnIndex() with EffectiveColumnIndex()
Patch Set: - 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
diff --git a/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp b/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
index 95561701fea78e26d5f864eb50aa8a2eb2a361a3..f3ce11a08650758e81d4f233d69784c5404c434c 100644
--- a/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
+++ b/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmFixed.cpp
@@ -94,7 +94,7 @@ int TableLayoutAlgorithmFixed::CalcWidthArray() {
// Width specified by column-groups that have column child does not affect
// column width in fixed layout tables
- if (col->IsTableColumnGroupWithColumnChildren())
+ if (!col->IsInnermost())
continue;
Length col_style_logical_width = col->Style()->LogicalWidth();

Powered by Google App Engine
This is Rietveld 408576698