gecko-dev/dom/animation/test/css-animations/test_event-order.html
Mantaroh Yoshinaga 89abd57984 Bug 1202333 part 4 - Add test of event order for CSS-Animation. r=birtles
MozReview-Commit-ID: 9XxHLiohXJ2

--HG--
extra : rebase_source : a02cd81ce2331618e422c5e6695208de0c41fd21
2016-12-20 15:57:20 +09:00

16 lines
382 B
HTML

<!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>