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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutListItem.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/layout/LayoutListItem.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutListItem.cpp b/third_party/WebKit/Source/core/layout/LayoutListItem.cpp
index 56b4c6d190ce1f1dcb9dd4ed1962a24fd708d5e8..d2193b75f734c0975874371cbf9e68fc1f64af25 100644
--- a/third_party/WebKit/Source/core/layout/LayoutListItem.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutListItem.cpp
@@ -52,7 +52,7 @@ void LayoutListItem::styleDidChange(StyleDifference diff,
LayoutBlockFlow::styleDidChange(diff, oldStyle);
StyleImage* currentImage = style()->listStyleImage();
- if (style()->listStyleType() != EListStyleType::NoneListStyle ||
+ if (style()->listStyleType() != EListStyleType::None ||
(currentImage && !currentImage->errorOccurred())) {
if (!m_marker)
m_marker = LayoutListMarker::createAnonymous(this);

Powered by Google App Engine
This is Rietveld 408576698