summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1514086.html
blob: dc3f81e2ac335c8d920cc0337c5153e94006ff5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<script>
let o = [];
window.onload = function(){
  o[0] = document.createElement("font");
  document.body.appendChild(o[0]);
  o[1] = document.createElement("embed");
  o[0].appendChild(o[1]);
  o[2] = document.createElement("dialog");
  o[1].appendChild(o[2]);
  o[2].appendChild(document.createElement("s"));
  o[2].animate([{"all": "unset"}, {}], 3);
}
</script>