summaryrefslogtreecommitdiffstats
path: root/gfx/tests/crashtests/405268-1.xhtml
blob: ecb6ecf21870da75f5b26b05f4c4d1f2088aa65c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript">
//<![CDATA[
function boom()
{
  var div = document.createElementNS('http://www.w3.org/1999/xhtml', 'div');
  document.body.appendChild(div);
  div.style.fontSize = '68719476736px';
  div.appendChild(document.createTextNode(String.fromCharCode(0)));
}
//]]>
</script>
</head>

<body onload="boom()">

</body>
</html>