blob: bf9209cb209f444ace2a2773a102b62478843e09 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<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>
|