8 var mo
= document
.createElementNS("http://www.w3.org/1998/Math/MathML", "mo");
9 var t1
= document
.createTextNode("123456 ");
11 document
.body
.appendChild(mo
);
12 var t2
= document
.createTextNode("x");
13 document
.body
.appendChild(t2
);
15 var r1
= document
.createRange();
17 var r3
= document
.createRange();
20 document
.documentElement
.offsetHeight
;
22 var r2
= document
.createRange();
31 <body onload=
"boom();"></body>