Index: Source/core/rendering/RenderListItem.cpp |
diff --git a/Source/core/rendering/RenderListItem.cpp b/Source/core/rendering/RenderListItem.cpp |
index c3ad8fe70d62c0148b8522c84723e3e331bd6101..b3dc76bc93aebda38951c292d9221158d3fb7120 100644 |
--- a/Source/core/rendering/RenderListItem.cpp |
+++ b/Source/core/rendering/RenderListItem.cpp |
@@ -257,7 +257,7 @@ void RenderListItem::updateValue() |
if (!m_hasExplicitValue) { |
m_isValueUpToDate = false; |
if (m_marker) |
- m_marker->setNeedsLayoutAndPrefWidthsRecalcAndFullRepaint(); |
+ m_marker->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation(); |
} |
} |
@@ -448,7 +448,7 @@ const String& RenderListItem::markerText() const |
void RenderListItem::explicitValueChanged() |
{ |
if (m_marker) |
- m_marker->setNeedsLayoutAndPrefWidthsRecalcAndFullRepaint(); |
+ m_marker->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation(); |
Node* listNode = enclosingList(this); |
for (RenderListItem* item = this; item; item = nextListItem(listNode, item)) |
item->updateValue(); |