mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Add support for transitionrun events
These events are triggered as soon as a transition is added to the list of running transitions. This will allow better test coverage while reworking the transitions and animations processing model.
This commit is contained in:
parent
0540c4a284
commit
d386d6d1f1
11 changed files with 105 additions and 93 deletions
|
@ -647,6 +647,7 @@ fn invoke(
|
|||
atom!("animationiteration") => Some(atom!("webkitAnimationIteration")),
|
||||
atom!("animationstart") => Some(atom!("webkitAnimationStart")),
|
||||
atom!("transitionend") => Some(atom!("webkitTransitionEnd")),
|
||||
atom!("transitionrun") => Some(atom!("webkitTransitionRun")),
|
||||
_ => None,
|
||||
} {
|
||||
let original_type = event.type_();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue