summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/374297-2.html
blob: 86aeae8cea853b67ea7aafdd2f412cb5e1ab3941 (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 $table2 = document.getElementById('table2');
  $table2.setAttribute('width', '30%'); 
  var $th273 = document.getElementById('th273'); 
  $th273.style.position = "relative";

  document.documentElement.removeAttribute("class");
}

</script>
</head>


<body onload="setTimeout(boom,30)">

<table id="table2"><tr><div><th id="th273"></th></div></table>

</body>
</html>