Index: Source/core/rendering/RenderMenuList.cpp |
diff --git a/Source/core/rendering/RenderMenuList.cpp b/Source/core/rendering/RenderMenuList.cpp |
index a040f574dbd10087959d5facd5e8df6d40e0f879..38702918ecfc8c2833999c1c436aaa5e8ea08eec 100644 |
--- a/Source/core/rendering/RenderMenuList.cpp |
+++ b/Source/core/rendering/RenderMenuList.cpp |
@@ -115,7 +115,7 @@ void RenderMenuList::adjustInnerStyle() |
if (m_optionStyle) { |
if ((m_optionStyle->direction() != innerStyle->direction() || m_optionStyle->unicodeBidi() != innerStyle->unicodeBidi())) |
- m_innerBlock->setNeedsLayoutAndPrefWidthsRecalcAndFullRepaint(); |
+ m_innerBlock->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation(); |
innerStyle->setTextAlign(style()->isLeftToRightDirection() ? LEFT : RIGHT); |
innerStyle->setDirection(m_optionStyle->direction()); |
innerStyle->setUnicodeBidi(m_optionStyle->unicodeBidi()); |
@@ -192,7 +192,7 @@ void RenderMenuList::updateOptionsWidth() |
m_optionsWidth = width; |
if (parent()) |
- setNeedsLayoutAndPrefWidthsRecalcAndFullRepaint(); |
+ setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation(); |
} |
void RenderMenuList::updateFromElement() |