Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 div { color: green; }
6 div:empty { color: red; }
7 </style>
8 <script>
9 window.onload = function () {
10 document.getElementById("x").appendChild(document.createTextNode("This should be green"));
11 }
12 </script>
13 </head>
14 <body>
15 <div id="x"></div>
16 </body>
17 </html>