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/385289-1.xhtml - WPT Dashboard Interop Dashboard
 
 
<head>
<script>
function boom()
{
  var mss = document.getElementById("mss");
  var j = document.createTextNode("j");
  var comb = document.createTextNode("\u0302");
  mss.appendChild(j);
  mss.appendChild(comb);
}
</script>
</head>
<body onload="boom()">
<div>
    <msub id="mss">
      <mi>v</mi>
      <mn>1</mn>
    </msub>
  </math>
</div>
</body>
</html>