OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <meta charset="utf-8"> |
| 5 <title>Float wrapping w/trailing whitespace</title> |
| 6 <style> |
| 7 .test { |
| 8 float: left; |
| 9 clear: both; |
| 10 margin: 1px 0; |
| 11 text-rendering: optimizeLegibility; |
| 12 background: silver; |
| 13 } |
| 14 </style> |
| 15 </head> |
| 16 <body> |
| 17 <h1>Float wrapping w/trailing whitespace</h1> |
| 18 <p> |
| 19 Tests wrapping of text in floats with leading and/or trailing |
| 20 white-space. Neither line below should wrap. |
| 21 </p> |
| 22 <div> |
| 23 <span class="test">लपेट नहीं करना चाहिए							&
#9;			</span> |
| 24 <span class="test">लपेट नहीं करना चाहिए </span> |
| 25 <span class="test">लपेट नहीं करना चाहिए</span> |
| 26 <span class="test">should not wrap	</span> |
| 27 <span class="test">should not wrap	 </span> |
| 28 <span class="test">should not wrap 	</span> |
| 29 <span class="test">should not wrap</span> |
| 30 </div> |
| 31 </body> |
| 32 </html> |
OLD | NEW |