mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-23 08:57:34 +09:00
Bug 1202333: AnimationEvent elapsedTime should reflect playbackRate (added tests)
Issue #55
This commit is contained in:
parent
901d2a277f
commit
2243f5248c
10 changed files with 469 additions and 24 deletions
|
|
@ -18,7 +18,7 @@ body { padding: 50px }
|
|||
border: 1px solid black;
|
||||
transform-style: preserve-3d;
|
||||
/* use a -99.9s delay to start at 99.9% and then move to 0% */
|
||||
animation: spin 100s -99.9s linear 2;
|
||||
animation: spin 100s -99.9s linear 2 paused;
|
||||
}
|
||||
|
||||
#child {
|
||||
|
|
@ -39,7 +39,13 @@ body { padding: 50px }
|
|||
|
||||
<script>
|
||||
|
||||
document.getElementById("parent").addEventListener("animationiteration", IterationListener, false);
|
||||
document.getElementById("parent").addEventListener("animationstart", StartListener, false);
|
||||
|
||||
function StartListener(event) {
|
||||
var test = document.getElementById("parent");
|
||||
test.style.animationPlayState = 'running';
|
||||
test.addEventListener("animationiteration", IterationListener, false);
|
||||
}
|
||||
|
||||
function IterationListener(event) {
|
||||
setTimeout(RemoveReftestWait, 0);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue