aboutsummaryrefslogtreecommitdiffstats
path: root/components/script
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-02-12 12:00:31 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2016-02-12 12:00:31 +0530
commita24e86e76fb2bebc1ded68d17cda10aa10417364 (patch)
treec450da1c58004418629eb886fa29174e9a7adac9 /components/script
parentfaa349fb876c4b163ba14623899c9f4e6ab3d0eb (diff)
parent54e737c2b0e90a811d714dc5358692d60fc98e49 (diff)
downloadservo-a24e86e76fb2bebc1ded68d17cda10aa10417364.tar.gz
servo-a24e86e76fb2bebc1ded68d17cda10aa10417364.zip
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 -->
Diffstat (limited to 'components/script')
-rw-r--r--components/script/dom/htmlinputelement.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlinputelement.rs b/components/script/dom/htmlinputelement.rs
index 6e7557465a2..6bc242338fe 100644
--- a/components/script/dom/htmlinputelement.rs
+++ b/components/script/dom/htmlinputelement.rs
@@ -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);
}