summaryrefslogtreecommitdiffstats
path: root/gfx/tests/crashtests/394246-2.html
blob: e5fe8c1754dccf7565b0b2a671fb033920b20659 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<html class="reftest-wait">
<head>
<script>
function boom()
{
  var div = document.getElementById("div");
  div.innerHTML = div.innerHTML.slice(1);
  setTimeout(c, 30);
}

function c()
{
  div.innerHTML = div.innerHTML.slice(1);
  document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="boom();">

<div id="div">t
&#769;</div>

</body></html>