mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-08 12:22:34 +00:00
89abd57984
MozReview-Commit-ID: 9XxHLiohXJ2 --HG-- extra : rebase_source : a02cd81ce2331618e422c5e6695208de0c41fd21
16 lines
382 B
HTML
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>
|