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/348811-2.xhtml - WPT Dashboard Interop Dashboard
 
 
<head>
<script>
function foo()
{
  var newTable = document.createElementNS(m, "mtable")
  document.getElementById("mtable").appendChild(newTable);
}
</script>
</head>
<body onload="foo()">
<div>
    <mtable id="mtable">
      <mtr id="mtr">
         <mtd>
           <mi>x</mi>
         </mtd>
      </mtr>
    </mtable>
  </math>
</div>
</body>
</html>