Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /mathml/crashtests/mozilla/402400-1.xhtml - WPT Dashboard Interop Dashboard
<head>
<script type="text/javascript">
function boom()
{
var textB = document.createTextNode("b");
var textC = document.createTextNode("c");
var textN = document.createTextNode("n");
var textP = document.createTextNode("p");
td.appendChild(textB);
document.body.appendChild(blv);
blv.appendChild(tr);
blv.appendChild(mathMO);
mathMO.appendChild(textP);
odj.appendChild(td);
odj.appendChild(textN);
blv.removeChild(tr);
mathMO.appendChild(odj);
td.removeChild(textB);
blv.appendChild(textC);
document.body.appendChild(odj);
odj.insertBefore(mathMO, textN);
document.body.appendChild(mathMO);
mathMO.appendChild(odj);
}
</script>
</head>
<body onload="boom();"></body>
</html>