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

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

Issue 2563353002: Generate storage for -webkit-box-direction in ComputedStyleBase (Closed)
Patch Set: Created 4 years 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 a83f2f2f56f4c9d035a0d680131a294630494cf4..064cc676284dbf625e47c8e586ca1821146b1a92 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -814,7 +814,7 @@ bool ComputedStyle::diffNeedsFullLayoutAndPaintInvalidation(
return true;
}
- if (m_inheritedData.m_boxDirection != other.m_inheritedData.m_boxDirection ||
+ if (boxDirection() != other.boxDirection() ||
m_inheritedData.m_rtlOrdering != other.m_inheritedData.m_rtlOrdering ||
m_inheritedData.m_textAlign != other.m_inheritedData.m_textAlign ||
textTransform() != other.textTransform() ||
« 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