Bug 1202333: AnimationEvent elapsedTime should reflect playbackRate (added tests)

Issue #55
This commit is contained in:
janekptacijarabaci 2018-03-14 11:55:23 +01:00 committed by Roy Tam
commit 2243f5248c
10 changed files with 469 additions and 24 deletions

View file

@ -0,0 +1,15 @@
<!doctype html>
<meta charset=utf-8>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
'use strict';
setup({explicit_done: true});
SpecialPowers.pushPrefEnv(
{ "set": [["dom.animations-api.core.enabled", true]]},
function() {
window.open("file_event-order.html");
});
</script>
</html>