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/307826-1.xhtml - WPT Dashboard Interop Dashboard
 
 
<head>
<title>Testcase for MathML crash</title>
<script><![CDATA[
function boom() {
  var div = document.getElementById("div");
  var mi = document.getElementById("mi");
  mi.appendChild(div);
  mi.removeChild(div);
  document.documentElement.removeAttribute("class");
}
]]></script>
</head>
<body onload="setTimeout(boom, 30);">
<div style="float: right;" id="div">Floated div</div>
</body>
</html>