OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>white-space nowrap: basic test</title> | 4 <title>white-space nowrap: basic test</title> |
5 <style type="text/css"> | 5 <style type="text/css"> |
6 .control { display: inline; font: 1em/1 Ahem, sans-serif; background: red; co
lor: white; } | 6 @font-face { font-family: myahem; src: url(../../../resources/Ahem.ttf); } |
7 .top { font: 20px/1 Ahem; } | 7 .control { display: inline; font: 1em/1 myahem, sans-serif; background: red;
color: white; } |
| 8 .top { font: 20px/1 myahem; } |
8 .outer { width: 10em; background: red; } | 9 .outer { width: 10em; background: red; } |
9 .inner { width: 7em; color: lime; background: green; white-space: nowrap; } | 10 .inner { width: 7em; color: lime; background: green; white-space: nowrap; } |
10 </style> | 11 </style> |
11 </head> | 12 </head> |
12 <body> | 13 <body> |
13 <div class="control">Ahem_font_required_for_this_test.</div> | 14 <div class="control">Ahem_font_required_for_this_test.</div> |
14 <p>There should be no red below, only a lime line with a green square in it.</
p> | 15 <p>There should be no red below, only a lime line with a green square in it.</
p> |
15 <div class="top"> | 16 <div class="top"> |
16 <div class="outer"> | 17 <div class="outer"> |
17 <div class="inner"> | 18 <div class="inner"> |
18 xxx xxxxxx | 19 xxx xxxxxx |
19 </div> | 20 </div> |
20 </div> | 21 </div> |
21 </div> | 22 </div> |
22 </body> | 23 </body> |
23 </html> | 24 </html> |
OLD | NEW |