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 p { float:left; white-space:pre; border:1px solid black; clear:both; }
6 .letterspace { letter-spacing:2px; }
7 table { clear:both; }
8 </style>
9 </head>
10 <body>
12 <p>
13 a
14 </p>
16 <div style="width:0">
17 <p>
18 a
19 </p>
20 </div>
22 <!-- there should be 1px of letter-spacing after the tab, 1px before the 'a' and 2px after
23 the a -->
24 <p class="letterspace">
25 a
26 </p>
28 <div style="width:0">
29 <p class="letterspace">
30 a
31 </p>
32 </div>
34 <table><tr>
35 <td style="background-color:#808080;"><pre>
36 test
37 abcdefg hijklm nopqr stuv wxy z0 1
38 </pre></td>
39 <td style="background-color:#c08080;">cell 2</td>
40 </tr></table>
42 </body>
43 </html>