mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
input event should bubble
This commit is contained in:
parent
4c4df37a12
commit
54e737c2b0
1 changed files with 1 additions and 1 deletions
|
@ -956,7 +956,7 @@ impl Runnable for ChangeEventRunnable {
|
||||||
let window = window.r();
|
let window = window.r();
|
||||||
let event = Event::new(GlobalRef::Window(window),
|
let event = Event::new(GlobalRef::Window(window),
|
||||||
atom!("input"),
|
atom!("input"),
|
||||||
EventBubbles::DoesNotBubble,
|
EventBubbles::Bubbles,
|
||||||
EventCancelable::NotCancelable);
|
EventCancelable::NotCancelable);
|
||||||
target.upcast::<EventTarget>().dispatch_event(&event);
|
target.upcast::<EventTarget>().dispatch_event(&event);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue