Index: Source/core/html/forms/RangeInputType.cpp |
diff --git a/Source/core/html/forms/RangeInputType.cpp b/Source/core/html/forms/RangeInputType.cpp |
index 55a99154277ea6febb63f2cbbadd3ca24d2fd5f0..af35d482eef7b485f925f443f491175fbf478203 100644 |
--- a/Source/core/html/forms/RangeInputType.cpp |
+++ b/Source/core/html/forms/RangeInputType.cpp |
@@ -230,12 +230,11 @@ void RangeInputType::handleKeydownEvent(KeyboardEvent* event) |
if (newValue != current) { |
EventQueueScope scope; |
- TextFieldEventBehavior eventBehavior = DispatchChangeEvent; |
+ TextFieldEventBehavior eventBehavior = DispatchInputAndChangeEvent; |
setValueAsDecimal(newValue, eventBehavior, IGNORE_EXCEPTION); |
if (AXObjectCache* cache = element().document().existingAXObjectCache()) |
cache->postNotification(&element(), AXObjectCache::AXValueChanged, true); |
- element().dispatchFormControlChangeEvent(); |
} |
event->setDefaultHandled(); |