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/394150-1.xhtml - WPT Dashboard Interop Dashboard
<head>
<script>
function boom()
{
var textNode = document.getElementById("emptyset").firstChild;
var mrow = document.getElementById("mrow");
ms.appendChild(textNode); // *move* the text node from one place to another!
mrow.appendChild(ms);
}
</script>
</head>
<body onload="boom();">
<merror><emptyset id="emptyset">
<mrow id="mrow"></mrow></emptyset></merror>
</math>
</body>
</html>