Auto merge of #9614 - paulrouget:inputEventBubbles, r=mbrubeck

input event should bubble

No test because: https://github.com/servo/servo/issues/9574#issuecomment-181558144

Fix #9574

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.svg" height="40" alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9614)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-02-12 12:00:31 +05:30
commit a24e86e76f

View file

@ -952,7 +952,7 @@ impl Runnable for ChangeEventRunnable {
let window = window.r();
let event = Event::new(GlobalRef::Window(window),
atom!("input"),
EventBubbles::DoesNotBubble,
EventBubbles::Bubbles,
EventCancelable::NotCancelable);
target.upcast::<EventTarget>().dispatch_event(&event);
}