|
1 <!DOCTYPE html> |
|
2 <html> |
|
3 <head> |
|
4 <script> |
|
5 |
|
6 function boom() |
|
7 { |
|
8 var outer = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); |
|
9 outer.setAttribute("dir", "auto"); |
|
10 var inner = document.createElementNS("http://www.w3.org/1999/xhtml", "div"); |
|
11 inner.appendChild(document.createTextNode("A")); |
|
12 inner.appendChild(document.createTextNode("B")); |
|
13 outer.appendChild(inner); |
|
14 inner.setAttribute("dir", "ltr"); |
|
15 } |
|
16 |
|
17 </script> |
|
18 </head> |
|
19 <body onload="boom();"></body> |
|
20 </html> |