Index: Source/core/rendering/RenderListBox.cpp |
diff --git a/Source/core/rendering/RenderListBox.cpp b/Source/core/rendering/RenderListBox.cpp |
index 8918b0a8200027dea27a8e0d1087c181f9235315..f35e23b9424d6398ed7521523a32e9bd798c89b2 100644 |
--- a/Source/core/rendering/RenderListBox.cpp |
+++ b/Source/core/rendering/RenderListBox.cpp |
@@ -631,13 +631,6 @@ bool RenderListBox::scroll(ScrollDirection direction, ScrollGranularity granular |
return ScrollableArea::scroll(direction, granularity, multiplier); |
} |
-void RenderListBox::valueChanged(unsigned listIndex) |
-{ |
- HTMLSelectElement* element = selectElement(); |
- element->setSelectedIndex(element->listToOptionIndex(listIndex)); |
- element->dispatchFormControlChangeEvent(); |
-} |
- |
int RenderListBox::scrollSize(ScrollbarOrientation orientation) const |
{ |
return orientation == VerticalScrollbar ? (numItems() - numVisibleItems()) : 0; |