Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
1 <!DOCTYPE html>
2 <html>
3 <head>
5 <style>
7 body {
8 width: 5em;
9 font-family: monospace;
10 border: 1px solid yellow;
11 }
13 body:first-letter {
14 color: blue;
15 }
17 </style>
19 </head>
20 <body>
22 <span><span><span id="sss">Aaa </span></span>Bbbbbbbbbbbbbb<span></span></span>
24 <script>
25 document.body.offsetWidth;
26 sss = document.getElementById("sss");
27 sss.parentNode.removeChild(sss);
28 </script>
30 </body>
31 </html>