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

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

Issue 2597083002: Moved list-style-type to be generated 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 070c725a0c9e87d02d45c3e2a7c9ac80c7f56136..d4c9618495a3c5afb9609fa29bab44b0ff207768 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.cpp
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.cpp
@@ -856,8 +856,7 @@ bool ComputedStyle::diffNeedsFullLayoutAndPaintInvalidation(
other.borderRightStyle() == BorderStyleHidden)))
return true;
} else if (display() == EDisplay::ListItem) {
- if (m_inheritedData.m_listStyleType !=
- other.m_inheritedData.m_listStyleType ||
+ if (listStyleType() != other.listStyleType() ||
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