Index: Source/WebCore/dom/Node.cpp |
=================================================================== |
--- Source/WebCore/dom/Node.cpp (revision 134268) |
+++ Source/WebCore/dom/Node.cpp (working copy) |
@@ -2665,12 +2665,12 @@ |
void Node::dispatchChangeEvent() |
{ |
- dispatchEvent(Event::create(eventNames().changeEvent, true, false)); |
+ dispatchScopedEvent(Event::create(eventNames().changeEvent, true, false)); |
} |
void Node::dispatchInputEvent() |
{ |
- dispatchEvent(Event::create(eventNames().inputEvent, true, false)); |
+ dispatchScopedEvent(Event::create(eventNames().inputEvent, true, false)); |
} |
bool Node::disabled() const |