summaryrefslogtreecommitdiffstats
path: root/dom/base/crashtests/399712-1.html
blob: 58e9573090c464b76feb7641d900e74ff73796e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html class="reftest-wait">
<head>
<script>

function boom()
{
  document.getElementById("ta").style.overflow = "scroll";
  setTimeout(boom2, 12);
}

function boom2()
{
  document.getElementById("ta").style.overflow = "";
  setTimeout(boom, 12);
}

function cont()
{
  document.documentElement.removeAttribute("class");
}
</script>
</head>

<body onload="boom(); setTimeout(cont, 800);">

<textarea id="ta">x</textarea>

</body>
</html>