summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/497519-2.xhtml
blob: 5a08a6688b7ffc440d22a72315d7075332b73f4a (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
<html xmlns="http://www.w3.org/1999/xhtml" style="-moz-binding: url(#foo)">
<head>

<xbl:bindings xmlns:xbl="http://www.mozilla.org/xbl">
<xbl:binding id="foo"><xbl:content><fieldset><xbl:children/></fieldset></xbl:content></xbl:binding>
</xbl:bindings>

<script type="text/javascript">

function boom()
{
  var dE = document.documentElement;
  var leg = document.createElementNS("http://www.w3.org/1999/xhtml", "legend");
  leg.style.cssFloat = "left";
  dE.appendChild(leg);
  document.documentElement.offsetHeight;
  dE.removeChild(leg);
}

</script>

</head>

<body onload="boom();"></body>

</html>