mirror of
https://github.com/servo/servo.git
synced 2025-07-22 14:53:49 +01:00
cangc fixes in several files + event.rs + rtcpeerconnection.rs (#34002)
Signed-off-by: L Ashwin B <lashwinib@gmail.com>
This commit is contained in:
parent
3b5dc069ae
commit
7ad8822d94
37 changed files with 166 additions and 132 deletions
|
@ -510,7 +510,7 @@ impl Animations {
|
|||
};
|
||||
TransitionEvent::new(&window, event_atom, &event_init, can_gc)
|
||||
.upcast::<Event>()
|
||||
.fire(node.upcast());
|
||||
.fire(node.upcast(), can_gc);
|
||||
} else {
|
||||
let event_init = AnimationEventInit {
|
||||
parent,
|
||||
|
@ -520,7 +520,7 @@ impl Animations {
|
|||
};
|
||||
AnimationEvent::new(&window, event_atom, &event_init, can_gc)
|
||||
.upcast::<Event>()
|
||||
.fire(node.upcast());
|
||||
.fire(node.upcast(), can_gc);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue