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/367107-1.html - WPT Dashboard Interop Dashboard
<html>
<head>
<script>
function boom()
{
var mtr = document.createElementNS(MATHML_NS, 'mtr');
var mtable = document.createElementNS(MATHML_NS, 'mtable');
document.body.appendChild(mtr);
mtr.appendChild(mtable);
}
</script>
</head>
<body onload="boom()">
</body>
</html>