content/base/crashtests/822723.html

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:cc95d08e2ca3
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>

mercurial