mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
29 lines
529 B
HTML
29 lines
529 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:m="http://www.w3.org/1998/Math/MathML">
|
|
<head>
|
|
<script type="text/javascript">
|
|
|
|
function boom()
|
|
{
|
|
var m = document.getElementById("m");
|
|
m.parentNode.removeChild(m);
|
|
document.getElementById("s").appendChild(document.createTextNode("c"));
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
|
|
<m:mrow>
|
|
<span>
|
|
<m:msup id="m"/>
|
|
<div style="-moz-column-width: 1px;">
|
|
<m:munderover/>
|
|
<m:msqrt/>
|
|
</div>
|
|
</span>
|
|
<span id="s"></span>
|
|
</m:mrow>
|
|
|
|
</body>
|
|
</html>
|