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

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

Issue 2506033003: Move list-style-position to be generated in ComputedStyleBase (Closed)
Patch Set: Rebase Created 4 years, 1 month 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 c45ebe126090d8488234a29ce3e6f6f678725ff6..a88aa09eb673ebed99c822e09b94e6bea910bead 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -870,8 +870,7 @@ bool ComputedStyle::diffNeedsFullLayoutAndPaintInvalidation(
} else if (display() == EDisplay::ListItem) {
if (m_inheritedData.m_listStyleType !=
other.m_inheritedData.m_listStyleType ||
- m_inheritedData.m_listStylePosition !=
- other.m_inheritedData.m_listStylePosition)
+ listStylePosition() != other.listStylePosition())
return true;
}
« 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