Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /mathml/presentation-markup/tokens/dynamic-mi-mozilla-414123.xhtml - WPT Dashboard Interop Dashboard
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<link rel="match" href="dynamic-mi-mozilla-414123-ref.xhtml"/>
<script>
function doTest() {
var t = document.createTextNode('M')
document.getElementById('mi1').appendChild(t);
mi.appendChild(document.createTextNode('M'));
mn.appendChild(document.createTextNode('2'));
msup.appendChild(mi);
msup.appendChild(mn);
document.getElementById('m').appendChild(msup);
document.documentElement.removeAttribute("class");
}
document.documentElement.addEventListener("TestRendered", doTest);
</script>
</head>
<body>
<msup>
<mi id="mi1"></mi>
<mn>2</mn>
</msup>
</math>
<msup>
<mi>M</mi>
<mn>2</mn>
</msup>
</math>
</body>
</html>