summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/438266-1.html
blob: 1e7bdb84be5054e49258f82c26dc8b2afde64c16 (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
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">

function boom()
{
  document.getElementById("hr").removeAttribute("width");

  document.documentElement.offsetHeight;

  var newTR = document.createElement("tr");
  document.getElementById("table").appendChild(newTR);
}

</script>
</head>

<body onload="boom()">

<table id="table">
  <tbody>
    <tr>
      <td>
        <div><hr width="7000" id="hr"></div>
        <div style="column-width: 100px;">x<li></li></div>
      </td>
    </tr>
  </tbody>
</table>

</body>
</html>