summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/654002-1.html
blob: b96b0ef35cdda8709538189191c11a8445262e08 (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
<!DOCTYPE HTML>
<html><head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>Testcase for bug 654002</title>
<script>
function boom() {
  var e = document.getElementById('inner');
  var s = "<br>"
  for (k=0;k<=14;k++) {
    s += s;
  }
  e.innerHTML = s;
  document.body.offsetHeight;
  e.style.display = 'none'
  document.body.offsetHeight;
}
</script>
</head>
<body onload="boom()">

<div style="width:1px;"><span><span id="inner"></span></span></div>

</body>
</html>