blob: b7b9e7a60f3e6adf67c8259bd5c02d611f7c0f55 (
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
29
30
31
32
33
34
35
36
|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:m="http://www.w3.org/1998/Math/MathML">
<head>
<style type="text/css">
#q { width: 16px; height: 16px; }
#a, #b { counter-increment: chicken; }
</style>
<style id="s" type="text/css">
#a { content: 'x'; }
</style>
<script type="text/javascript">
function boom()
{
remove(document.getElementById("s"));
remove(document.getElementById("b"));
}
function remove(n)
{
n.parentNode.removeChild(n);
}
</script>
</head>
<body onload="boom();">
<m:mrow id="a"/><m:mo id="q"><m:malignmark><m:msubsup/><m:munderover/><m:munder id="b"/></m:malignmark></m:mo>
</body>
</html>
|