blob: 907ede6abb7ca66d82fd3bdebdb147d826cc9c11 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function foo()
{
document.getElementById("mtr").appendChild(document.createTextNode("a"));
}
</script>
</head>
<body onload="foo()">
<div><math xmlns="http://www.w3.org/1998/Math/MathML" display="block">
<mrow>
<mfenced open="[" close="]">
<mtable>
<mtr id="mtr">
<mtd><mi>x</mi></mtd>
<mtd><mi>y</mi></mtd>
</mtr>
</mtable>
</mfenced>
</mrow>
</math></div>
</body>
</html>
|