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 <html xmlns="http://www.w3.org/1999/xhtml">
2 <head>
3 <script type="text/javascript">
5 function boom()
6 {
7 var div1 = document.createElement("div");
8 div1.style.counterIncrement = "chicken";
9 div1.contentEditable = "true";
11 var div2 = document.createElement("div");
12 div2.style.counterIncrement = "chicken";
14 document.body.style.content = "'A'";
16 div1.appendChild(div2);
17 document.body.appendChild(div1);
18 div1.removeChild(div2);
19 }
21 </script>
23 </head>
25 <body onload="boom();">
27 </body>
28 </html>