Index: Source/WebCore/dom/Node.cpp |
=================================================================== |
--- Source/WebCore/dom/Node.cpp (revision 134259) |
+++ Source/WebCore/dom/Node.cpp (working copy) |
@@ -2657,12 +2657,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 |