summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/466763-1.html
blob: 406720a32311243c689cf4cc5040f5d2c4850eb2 (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
<html>
<head>
<script type="text/javascript">

function boom()
{
  var s = document.getElementById("s");
  s.appendChild(s.previousSibling);
  s.parentNode.removeAttribute("class");
  document.documentElement.offsetHeight;
  s.appendChild(document.createTextNode(" "));
}

</script>
<style type="text/css">

.flfr:first-letter { float: right; }

</style>
</head>

<body onload="boom();" class="flfr">&#xFEB7; <span id="s"></span></body>

</html>