blob: 9c0b46ff5406bc8c6ddb58f16f80ed0ebeaeb476 (
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">
<head>
<script>
function foo()
{
var mrow = document.getElementById("mrow")
mrow.parentNode.removeChild(mrow);
}
</script>
</head>
<body onload="setTimeout(foo, 100)">
<div>
<math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mrow id="mrow">
<mtd><img xmlns="http://www.w3.org/1999/xhtml" src="347355-1.gif" /></mtd>
<mtable>
<mtr>
<mtd><mi>t</mi></mtd>
</mtr>
</mtable>
</mrow>
</math>
</div>
</body>
</html>
|