summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/crashtests/mozilla/347355-1-inner.xhtml
blob: 22689c3c129f3a3f044fbf3a7130bebac0be2866 (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">
<head>
<script>

function foo()
{
  var mrow = document.getElementById("mrow")

  mrow.parentNode.removeChild(mrow);
}

</script>
</head>

<body onload="setTimeout(foo, 100)">

<div>
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
  <mrow id="mrow">
    <mtd><img xmlns="http://www.w3.org/1999/xhtml" src="347355-1.gif" /></mtd>
    <mtable>
      <mtr>
         <mtd><mi>t</mi></mtd>
      </mtr>
    </mtable>
  </mrow>
</math>
</div>

</body>

</html>