| Index: third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| index 275532bb4fd737759e67a6f72a4a27292d04d4dc..12bac45816313d246849d6f087911212e49f001b 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableSection.cpp
|
| @@ -1757,7 +1757,7 @@ unsigned LayoutTableSection::NumEffectiveColumns() const {
|
| return result + 1;
|
| }
|
|
|
| -const BorderValue& LayoutTableSection::BorderAdjoiningStartCell(
|
| +BorderValue LayoutTableSection::BorderAdjoiningStartCell(
|
| const LayoutTableCell* cell) const {
|
| #if DCHECK_IS_ON()
|
| DCHECK(cell->IsFirstOrLastCellInRow());
|
| @@ -1766,7 +1766,7 @@ const BorderValue& LayoutTableSection::BorderAdjoiningStartCell(
|
| : Style()->BorderEnd();
|
| }
|
|
|
| -const BorderValue& LayoutTableSection::BorderAdjoiningEndCell(
|
| +BorderValue LayoutTableSection::BorderAdjoiningEndCell(
|
| const LayoutTableCell* cell) const {
|
| #if DCHECK_IS_ON()
|
| DCHECK(cell->IsFirstOrLastCellInRow());
|
|
|