Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script>
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 }
17 </script>
18 </head>
19 <body onload="boom();"></body>
20 </html>