summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/399940-1.xhtml
blob: a8bf909677c316acea815e3ebad99301d61cf48f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:math="http://www.w3.org/1998/Math/MathML">
<head>
<script>

function boom()
{
  var textNode = document.createTextNode("a");
  document.getElementById("mathy").appendChild(textNode);
  document.documentElement.offsetHeight;
  textNode.data = "bc";
}

</script>
</head>

<body onload="boom();">

<table><span></span><math:mrow id="mathy" /></table>

</body>
</html>