mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
16 lines
386 B
HTML
16 lines
386 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_animation-ready.html");
|
|
});
|
|
</script>
|
|
</html>
|