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/366564-1.xhtml - WPT Dashboard Interop Dashboard
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN" "http://www.w3.org/Math/DTD/mathml2/xhtml-math11-f.dtd" >
<head>
<script>
function boom1()
{
document.getElementById("mfenced3").appendChild(document.getElementById("div4"));
setTimeout(boom2, 30);
}
function boom2()
{
document.getElementById("sup1").appendChild(document.getElementById("mo2"));
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom1, 30);">
<msup id="sup1">
<mi>b</mi>
<mn>2</mn>
</msup>
</math></div>
<mi>j</mi>
<mo id="mo2">=</mo>
<mfenced id="mfenced3" open="[" close="]">
<mn>55</mn>
</mfenced>
</math></div>
<mo> ∫ </mo>
</math></div>
</body>
</html>