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/347355-1-inner.xhtml - WPT Dashboard Interop Dashboard
 
 
<head>
<script>
function foo()
{
  var mrow = document.getElementById("mrow")
  mrow.parentNode.removeChild(mrow);
}
</script>
</head>
<body onload="setTimeout(foo, 100)">
<div>
  <mrow id="mrow">
    <mtable>↩      <mtr>↩         <mtd><mi>t</mi></mtd>↩      </mtr>↩    </mtable>
  </mrow>
</math>
</div>
</body>
</html>