gecko-dev/gfx/tests/crashtests/1278305.html
Ryan VanderMeulen fa211766ae Bug 1278305 - Add crashtest. r=me
--HG--
extra : rebase_source : c3a14fcd3c6c089ea9e0de4eaee1a42761d563a3
2017-10-11 19:54:09 -04:00

21 lines
382 B
HTML

<html>
<head>
<style>
body {
mask: url(#mymask);
}
div::after {
content: counter(n);
}
</style>
<script>
window.onload = function(){
document.getElementsByTagName('body')[0].animate(
[{"transform": "skewy(11rad)"},
{"transform": "rotatex(0.125turn)"}],
{"fill":"forwards", "iterations": 0.75, "duration": 1});
};
</script></head>
<body><div></div></body>
</html>