| Index: third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.cpp b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| index deca619c92323d67c5a079fac53e1d3860d8f849..8199e3f8783cdae444b3314e66513653c9946456 100644
|
| --- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| +++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
|
| @@ -371,7 +371,6 @@ void ComputedStyle::copyNonInheritedFromCached(const ComputedStyle& other) {
|
| m_nonInheritedData.m_overflowY = other.m_nonInheritedData.m_overflowY;
|
| m_nonInheritedData.m_verticalAlign = other.m_nonInheritedData.m_verticalAlign;
|
| m_nonInheritedData.m_position = other.m_nonInheritedData.m_position;
|
| - m_nonInheritedData.m_tableLayout = other.m_nonInheritedData.m_tableLayout;
|
| m_nonInheritedData.m_hasViewportUnits =
|
| other.m_nonInheritedData.m_hasViewportUnits;
|
| m_nonInheritedData.m_breakBefore = other.m_nonInheritedData.m_breakBefore;
|
| @@ -824,8 +823,7 @@ bool ComputedStyle::diffNeedsFullLayoutAndPaintInvalidation(
|
| if (borderCollapse() != other.borderCollapse() ||
|
| emptyCells() != other.emptyCells() ||
|
| captionSide() != other.captionSide() ||
|
| - m_nonInheritedData.m_tableLayout !=
|
| - other.m_nonInheritedData.m_tableLayout)
|
| + tableLayout() != other.tableLayout())
|
| return true;
|
|
|
| // In the collapsing border model, 'hidden' suppresses other borders, while
|
|
|