mirror of
https://github.com/servo/servo.git
synced 2025-08-05 21:50:18 +01:00
Make TransitionEvent::new take a &Window
This commit is contained in:
parent
e3980e6235
commit
707f8f881e
2 changed files with 4 additions and 6 deletions
|
@ -12,7 +12,6 @@ use dom::bindings::num::Finite;
|
||||||
use dom::bindings::reflector::reflect_dom_object;
|
use dom::bindings::reflector::reflect_dom_object;
|
||||||
use dom::bindings::str::DOMString;
|
use dom::bindings::str::DOMString;
|
||||||
use dom::event::Event;
|
use dom::event::Event;
|
||||||
use dom::globalscope::GlobalScope;
|
|
||||||
use dom::window::Window;
|
use dom::window::Window;
|
||||||
use servo_atoms::Atom;
|
use servo_atoms::Atom;
|
||||||
|
|
||||||
|
@ -34,11 +33,11 @@ impl TransitionEvent {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn new(global: &GlobalScope,
|
pub fn new(window: &Window,
|
||||||
type_: Atom,
|
type_: Atom,
|
||||||
init: &TransitionEventInit) -> Root<TransitionEvent> {
|
init: &TransitionEventInit) -> Root<TransitionEvent> {
|
||||||
let ev = reflect_dom_object(box TransitionEvent::new_inherited(init),
|
let ev = reflect_dom_object(box TransitionEvent::new_inherited(init),
|
||||||
global,
|
window,
|
||||||
TransitionEventBinding::Wrap);
|
TransitionEventBinding::Wrap);
|
||||||
{
|
{
|
||||||
let event = ev.upcast::<Event>();
|
let event = ev.upcast::<Event>();
|
||||||
|
@ -50,8 +49,7 @@ impl TransitionEvent {
|
||||||
pub fn Constructor(window: &Window,
|
pub fn Constructor(window: &Window,
|
||||||
type_: DOMString,
|
type_: DOMString,
|
||||||
init: &TransitionEventInit) -> Fallible<Root<TransitionEvent>> {
|
init: &TransitionEventInit) -> Fallible<Root<TransitionEvent>> {
|
||||||
let global = window.upcast::<GlobalScope>();
|
Ok(TransitionEvent::new(window, Atom::from(type_), init))
|
||||||
Ok(TransitionEvent::new(global, Atom::from(type_), init))
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1624,7 +1624,7 @@ impl ScriptThread {
|
||||||
// FIXME: Handle pseudo-elements properly
|
// FIXME: Handle pseudo-elements properly
|
||||||
pseudoElement: DOMString::new()
|
pseudoElement: DOMString::new()
|
||||||
};
|
};
|
||||||
let transition_event = TransitionEvent::new(window.upcast(),
|
let transition_event = TransitionEvent::new(&window,
|
||||||
atom!("transitionend"),
|
atom!("transitionend"),
|
||||||
&init);
|
&init);
|
||||||
transition_event.upcast::<Event>().fire(node.upcast());
|
transition_event.upcast::<Event>().fire(node.upcast());
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue