| Index: third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.cpp b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| index 05f49f63ccb89233eddb86011590306831bfde6f..b0a6337f490370f973cdadea505b036af51ef7b8 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| @@ -373,7 +373,7 @@ LayoutUnit LayoutTable::convertStyleLogicalWidthToComputedWidth(
|
| bool isCSSTable = !isHTMLTableElement(node());
|
| if (isCSSTable && styleLogicalWidth.isSpecified() &&
|
| styleLogicalWidth.isPositive() &&
|
| - style()->boxSizing() == BoxSizingContentBox)
|
| + style()->boxSizing() == EBoxSizing::kContentBox)
|
| borders =
|
| borderStart() + borderEnd() +
|
| (collapseBorders() ? LayoutUnit() : paddingStart() + paddingEnd());
|
| @@ -396,7 +396,7 @@ LayoutUnit LayoutTable::convertStyleLogicalHeightToComputedHeight(
|
| // FIXME: We cannot apply box-sizing: content-box on <table> which other
|
| // browsers allow.
|
| if (isHTMLTableElement(node()) ||
|
| - style()->boxSizing() == BoxSizingBorderBox) {
|
| + style()->boxSizing() == EBoxSizing::kBorderBox) {
|
| borders = borderAndPadding;
|
| }
|
| computedLogicalHeight = LayoutUnit(styleLogicalHeight.value() - borders);
|
|
|