| Index: Source/core/html/HTMLOptionElement.cpp
|
| diff --git a/Source/core/html/HTMLOptionElement.cpp b/Source/core/html/HTMLOptionElement.cpp
|
| index 34cd3ce7479a3c6f85afda624817f2f962540ded..14e32b42994a99e3b9c2b1889a519d414d71ed54 100644
|
| --- a/Source/core/html/HTMLOptionElement.cpp
|
| +++ b/Source/core/html/HTMLOptionElement.cpp
|
| @@ -331,18 +331,6 @@ PassRefPtr<ComputedStyle> HTMLOptionElement::customStyleForLayoutObject()
|
| return m_style;
|
| }
|
|
|
| -void HTMLOptionElement::didRecalcStyle(StyleRecalcChange change)
|
| -{
|
| - if (change == NoChange)
|
| - return;
|
| -
|
| - // FIXME: We ask our owner select to repaint regardless of which property changed.
|
| - if (HTMLSelectElement* select = ownerSelectElement()) {
|
| - if (LayoutObject* layoutObject = select->layoutObject())
|
| - layoutObject->setShouldDoFullPaintInvalidation();
|
| - }
|
| -}
|
| -
|
| String HTMLOptionElement::textIndentedToRespectGroupLabel() const
|
| {
|
| ContainerNode* parent = parentNode();
|
|
|