Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(999)

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.cpp

Issue 2669433002: Moved table-layout property to be generated in ComputedStyleBase. (Closed)
Patch Set: Rebase Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | third_party/WebKit/Source/core/style/ComputedStyleConstants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698