| Index: third_party/WebKit/Source/core/layout/LayoutTable.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.h b/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| index f4a86c2e3d12f39217d464e2e3cb51c75aacf160..41eade62d0d710ce1fa7a8026c4922014f223cda 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| @@ -345,8 +345,9 @@ class CORE_EXPORT LayoutTable final : public LayoutBlock {
|
| // 'border-spacing' only applies to separate borders (see 17.6.1 The
|
| // separated borders model).
|
| return borderStart() + borderEnd() +
|
| - (collapseBorders() ? LayoutUnit() : (paddingStart() + paddingEnd() +
|
| - borderSpacingInRowDirection()));
|
| + (collapseBorders() ? LayoutUnit()
|
| + : (paddingStart() + paddingEnd() +
|
| + borderSpacingInRowDirection()));
|
| }
|
|
|
| // Return the first column or column-group.
|
|
|