| Index: Source/core/rendering/RenderMenuList.cpp
|
| diff --git a/Source/core/rendering/RenderMenuList.cpp b/Source/core/rendering/RenderMenuList.cpp
|
| index 23602087d2f1cda8063c6cc31a59dc1379aeecab..1c93e0292dae2b4ca86b994d7e9ca8596cb6cf47 100644
|
| --- a/Source/core/rendering/RenderMenuList.cpp
|
| +++ b/Source/core/rendering/RenderMenuList.cpp
|
| @@ -114,7 +114,7 @@ void RenderMenuList::adjustInnerStyle()
|
|
|
| if (m_optionStyle) {
|
| if ((m_optionStyle->direction() != innerStyle->direction() || m_optionStyle->unicodeBidi() != innerStyle->unicodeBidi()))
|
| - m_innerBlock->setNeedsLayoutAndPrefWidthsRecalc();
|
| + m_innerBlock->setNeedsLayoutAndPrefWidthsRecalcAndFullRepaint();
|
| innerStyle->setTextAlign(style()->isLeftToRightDirection() ? LEFT : RIGHT);
|
| innerStyle->setDirection(m_optionStyle->direction());
|
| innerStyle->setUnicodeBidi(m_optionStyle->unicodeBidi());
|
| @@ -191,7 +191,7 @@ void RenderMenuList::updateOptionsWidth()
|
|
|
| m_optionsWidth = width;
|
| if (parent())
|
| - setNeedsLayoutAndPrefWidthsRecalc();
|
| + setNeedsLayoutAndPrefWidthsRecalcAndFullRepaint();
|
| }
|
|
|
| void RenderMenuList::updateFromElement()
|
|
|