зеркало из https://github.com/mozilla/gecko-dev.git
19 строки
459 B
HTML
19 строки
459 B
HTML
<!doctype html>
|
|
<meta charset=utf-8>
|
|
<head>
|
|
<script type="text/javascript" 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.core.enabled", true]]},
|
|
function() {
|
|
window.open("file_smilWithTransition.html");
|
|
});
|
|
</script>
|
|
</html>
|