blob: f464f9a39d3984c4d0e2fc1309a82a89976eb8a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!doctype html>
<meta charset=utf-8>
<head>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<pre id="test">
<script>
'use strict';
SimpleTest.waitForExplicitFinish();
SpecialPowers.pushPrefEnv(
{ "set": [["dom.animations-api.getAnimations.enabled", true]]},
function() {
window.open("file_smilWithTransition.html");
});
</script>
</html>
|