Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
michael@0 | 1 | <!DOCTYPE HTML> |
michael@0 | 2 | <html> |
michael@0 | 3 | <head> |
michael@0 | 4 | <!-- Testing all combinations of pre/nowrap/pre-wrap/normal space pairs --> |
michael@0 | 5 | <style> |
michael@0 | 6 | .nowrap { white-space:nowrap; } |
michael@0 | 7 | .pre { white-space:pre; } |
michael@0 | 8 | .prewrap { white-space:pre-wrap; } |
michael@0 | 9 | div { border:1px solid black; } |
michael@0 | 10 | .container { float:left; width:20%; border-color:cyan; } |
michael@0 | 11 | p { width:0; } |
michael@0 | 12 | b { font-weight:normal; background-color:yellow; } |
michael@0 | 13 | </style> |
michael@0 | 14 | </head> |
michael@0 | 15 | <body> |
michael@0 | 16 | |
michael@0 | 17 | <div> |
michael@0 | 18 | <p><b>Hello Kitty</b> |
michael@0 | 19 | <p><b>Hello<span class="pre"> </span>Kitty</b> |
michael@0 | 20 | <p><b>Hello<span class="nowrap"> </span>Kitty</b> |
michael@0 | 21 | <p><b>Hello<span class="prewrap"> </span>Kitty</b> |
michael@0 | 22 | </div> |
michael@0 | 23 | |
michael@0 | 24 | <div class="container"> |
michael@0 | 25 | <p><b>Hello Kitty</b> |
michael@0 | 26 | <p><b>Hello<span class="pre"> </span> Kitty</b> |
michael@0 | 27 | <p><b>Hello<span class="nowrap"> </span> Kitty</b> |
michael@0 | 28 | <p><b>Hello<span class="prewrap"> </span> Kitty</b> |
michael@0 | 29 | </div> |
michael@0 | 30 | |
michael@0 | 31 | <div class="container"> |
michael@0 | 32 | <p><b>Hello <span class="pre"> </span>Kitty</b> |
michael@0 | 33 | <p><b>Hello<span class="pre"> </span><span class="pre"> </span>Kitty</b> |
michael@0 | 34 | <p><b>Hello<span class="nowrap"> </span><span class="pre"> </span>Kitty</b> |
michael@0 | 35 | <p><b>Hello<span class="prewrap"> </span><span class="pre"> </span>Kitty</b> |
michael@0 | 36 | </div> |
michael@0 | 37 | |
michael@0 | 38 | <div class="container"> |
michael@0 | 39 | <p><b>Hello <span class="nowrap"> </span>Kitty</b> |
michael@0 | 40 | <p><b>Hello<span class="pre"> </span><span class="nowrap"> </span>Kitty</b> |
michael@0 | 41 | <p><b>Hello<span class="nowrap"> </span><span class="nowrap"> </span>Kitty</b> |
michael@0 | 42 | <p><b>Hello<span class="prewrap"> </span><span class="nowrap"> </span>Kitty</b> |
michael@0 | 43 | </div> |
michael@0 | 44 | |
michael@0 | 45 | <div class="container"> |
michael@0 | 46 | <p><b>Hello <span class="prewrap"> </span>Kitty</b> |
michael@0 | 47 | <p><b>Hello<span class="pre"> </span><span class="prewrap"> </span>Kitty</b> |
michael@0 | 48 | <p><b>Hello<span class="nowrap"> </span><span class="prewrap"> </span>Kitty</b> |
michael@0 | 49 | <p><b>Hello<span class="prewrap"> </span><span class="prewrap"> </span>Kitty</b> |
michael@0 | 50 | </div> |
michael@0 | 51 | |
michael@0 | 52 | </body> |
michael@0 | 53 | </html> |