Index: third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp |
diff --git a/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp b/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp |
index 0c4c42d5cf5195a8fe428e3262db46ad56be027d..6913285848f3324c68b61692b28350f811c74443 100644 |
--- a/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp |
+++ b/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp |
@@ -236,8 +236,9 @@ static bool shouldScaleColumnsForSelf(LayoutTable* table) { |
cb = cb->containingBlock(); |
// TODO(dgrogan): Should the second clause check for isFixed() instead? |
- if (!cb->isTableCell() || (!cb->style()->width().isAuto() && |
- !cb->style()->width().isPercentOrCalc())) |
+ if (!cb->isTableCell() || |
+ (!cb->style()->width().isAuto() && |
+ !cb->style()->width().isPercentOrCalc())) |
return true; |
LayoutTableCell* cell = toLayoutTableCell(cb); |