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 1b5ca74b866fff9cd404898b17106bbdb63c959f..e1134f03857590463d84987c66ad3f3cfe915082 100644 |
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp |
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp |
@@ -374,7 +374,6 @@ void ComputedStyle::copyNonInheritedFromCached(const ComputedStyle& other) { |
m_nonInheritedData.m_verticalAlign = other.m_nonInheritedData.m_verticalAlign; |
m_nonInheritedData.m_clear = other.m_nonInheritedData.m_clear; |
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; |
@@ -828,8 +827,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 |