| Index: third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.cpp b/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.cpp
|
| index b0ca3aaea220adc1d37963604f08dfeed2533c95..cf9d1855c860b4c3cfcd3d74a02b8eeb7bfc788d 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.cpp
|
| @@ -25,4 +25,12 @@ void LayoutTableBoxComponent::imageChanged(WrappedImagePtr, const IntRect*)
|
| m_backgroundChangedSinceLastPaintInvalidation = true;
|
| }
|
|
|
| +bool LayoutTableBoxComponent::borderWidthChanged(const ComputedStyle* oldStyle, const ComputedStyle* newStyle)
|
| +{
|
| + return oldStyle->borderLeftWidth() != newStyle->borderLeftWidth()
|
| + || oldStyle->borderTopWidth() != newStyle->borderTopWidth()
|
| + || oldStyle->borderRightWidth() != newStyle->borderRightWidth()
|
| + || oldStyle->borderBottomWidth() != newStyle->borderBottomWidth();
|
| +}
|
| +
|
| } // namespace blink
|
|
|