| 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 1fd05ec5287a700b9612cf03b69bed5c9ed07ddc..696ce3a024377141f6415316e7877d95a14de9a2 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp
|
| @@ -918,7 +918,7 @@ int LayoutTable::calcBorderStart() const
|
| if (!numEffCols())
|
| return 0;
|
|
|
| - int borderWidth = 0;
|
| + float borderWidth = 0;
|
|
|
| const BorderValue& tableStartBorder = style()->borderStart();
|
| if (tableStartBorder.style() == BHIDDEN)
|
| @@ -972,7 +972,7 @@ int LayoutTable::calcBorderEnd() const
|
| if (!numEffCols())
|
| return 0;
|
|
|
| - int borderWidth = 0;
|
| + float borderWidth = 0;
|
|
|
| const BorderValue& tableEndBorder = style()->borderEnd();
|
| if (tableEndBorder.style() == BHIDDEN)
|
| @@ -1026,7 +1026,7 @@ void LayoutTable::recalcBordersInRowDirection()
|
| m_borderEnd = calcBorderEnd();
|
| }
|
|
|
| -int LayoutTable::borderBefore() const
|
| +LayoutUnit LayoutTable::borderBefore() const
|
| {
|
| if (collapseBorders()) {
|
| recalcSectionsIfNeeded();
|
| @@ -1035,7 +1035,7 @@ int LayoutTable::borderBefore() const
|
| return LayoutBlock::borderBefore();
|
| }
|
|
|
| -int LayoutTable::borderAfter() const
|
| +LayoutUnit LayoutTable::borderAfter() const
|
| {
|
| if (collapseBorders()) {
|
| recalcSectionsIfNeeded();
|
|
|