|
1 <!DOCTYPE html> |
|
2 <html> |
|
3 <head> |
|
4 <script> |
|
5 |
|
6 function boom() |
|
7 { |
|
8 var allNodes = []; |
|
9 allNodes[5] = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); |
|
10 allNodes[5].style.setProperty("-moz-column-width", "200px", ""); |
|
11 allNodes[5].style.setProperty("height", "2em", ""); |
|
12 allNodes[7] = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); |
|
13 allNodes[7].style.setProperty("float", "left", ""); |
|
14 allNodes[30] = document.createElementNS("http://www.w3.org/1998/Math/MathML", "munder"); |
|
15 (allNodes[7] || allNodes[5] || document.body).appendChild(allNodes[30]); |
|
16 (allNodes[5] || document.body).appendChild(allNodes[7]); |
|
17 allNodes[17] = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); |
|
18 allNodes[17].style.setProperty("display", "inline-block", ""); |
|
19 (allNodes[5] || document.body).appendChild(allNodes[17]); |
|
20 allNodes[20] = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); |
|
21 (allNodes[5] || document.body).appendChild(allNodes[20]); |
|
22 allNodes[23] = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); |
|
23 allNodes[23].style.setProperty("float", "left", ""); |
|
24 allNodes[25] = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); |
|
25 allNodes[25].style.setProperty("display", "inline-block", ""); |
|
26 (allNodes[23] || allNodes[5] || document.body).appendChild(allNodes[25]); |
|
27 (allNodes[5] || document.body).appendChild(allNodes[23]); |
|
28 (document.body).appendChild(allNodes[5]); |
|
29 document.documentElement.offsetHeight; |
|
30 allNodes[34] = document.createElementNS("http://www.w3.org/1998/Math/MathML", 'maligngroup'); |
|
31 allNodes[17].appendChild(allNodes[34]); |
|
32 document.documentElement.offsetHeight; |
|
33 allNodes[30].setAttribute('accentunder', "false"); |
|
34 } |
|
35 |
|
36 </script> |
|
37 </head> |
|
38 |
|
39 <body onload="boom();"></body> |
|
40 </html> |