summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/mathml/crashtests/mozilla/413063-1.xhtml
blob: b595acd1cea55e35426b52c249614f95b729b1b1 (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:m="http://www.w3.org/1998/Math/MathML">
<head>
<script type="text/javascript">

function boom()
{
  var mtd = document.getElementById("mtd");
  var ns = document.createElementNS("http://www.w3.org/1999/xhtml", "span");
  var nt = document.createTextNode("foo");
  ns.appendChild(nt);
  mtd.appendChild(ns);
  mtd.setAttribute("rowspan", "0");
}


</script>
</head>

<body onload="boom();"><m:mtd id="mtd" style="display: table-footer-group"><m:mi /></m:mtd></body>

</html>