| Index: third_party/WebKit/Source/core/layout/LayoutTableCol.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableCol.cpp b/third_party/WebKit/Source/core/layout/LayoutTableCol.cpp
|
| index 194fc17b103908964f33154c10ac5a390106e93c..ba923455e9356954adaa151196e0989f538ca1e2 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableCol.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableCol.cpp
|
| @@ -111,7 +111,7 @@ bool LayoutTableCol::canHaveChildren() const {
|
| return isTableColumnGroup();
|
| }
|
|
|
| -LayoutRect LayoutTableCol::localOverflowRectForPaintInvalidation() const {
|
| +LayoutRect LayoutTableCol::localVisualRect() const {
|
| // Entire table gets invalidated, instead of invalidating
|
| // every cell in the column. This is simpler, but suboptimal.
|
|
|
| @@ -123,7 +123,7 @@ LayoutRect LayoutTableCol::localOverflowRectForPaintInvalidation() const {
|
| // location is always zero.
|
| ASSERT(this->location() == LayoutPoint());
|
|
|
| - return table->localOverflowRectForPaintInvalidation();
|
| + return table->localVisualRect();
|
| }
|
|
|
| void LayoutTableCol::clearPreferredLogicalWidthsDirtyBits() {
|
|
|