348811-1.xhtml (492B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <script> 4 function foo() 5 { 6 var newTable = document.createElementNS("http://www.w3.org/1998/Math/MathML", "mtable") 7 8 document.getElementById("mtr").appendChild(newTable); 9 } 10 </script> 11 </head> 12 13 <body onload="foo()"> 14 15 16 <div> 17 <math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> 18 <mtable> <mtr id="mtr"> <mtd> 19 <mi>x</mi> 20 </mtd> </mtr> </mtable> </math> 21 </div> 22 23 24 </body> 25 26 </html>