Skip to content

Commit

Permalink
Auto merge of #9614 - paulrouget:inputEventBubbles, r=mbrubeck
Browse files Browse the repository at this point in the history
input event should bubble

No test because: #9574 (comment)

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 -->
  • Loading branch information
bors-servo committed Feb 12, 2016
2 parents faa349f + 54e737c commit a24e86e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/script/dom/htmlinputelement.rs
Expand Up @@ -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);
}
Expand Down

0 comments on commit a24e86e

Please sign in to comment.