summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/472587-1.xhtml
blob: aa29f93fffdf7ef58661a7e788c0a811a43af0e3 (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
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:m="http://www.w3.org/1998/Math/MathML">
<head>
<script type="text/javascript">

function boom()
{
  var m = document.getElementById("m");
  m.parentNode.removeChild(m);
  document.getElementById("s").appendChild(document.createTextNode("c"));
}

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

<m:mrow>
  <span>
    <m:msup id="m"/>
    <div style="column-width: 1px;">
      <m:munderover/>
      <m:msqrt/>
    </div>
  </span>
  <span id="s"></span>
</m:mrow>

</body>
</html>