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: mixed tests</title> | 4 <title>white-space: mixed tests</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 .test { font: 1em/1 Ahem; background: green; color: lime; width: 19em; } | 7 .control { display: inline; font: 1em/1 myahem, sans-serif; background: red;
color: white; } |
| 8 .test { font: 1em/1 myahem; background: green; color: lime; width: 19em; } |
8 .normal { white-space: normal; } | 9 .normal { white-space: normal; } |
9 .nowrap { white-space: nowrap; } | 10 .nowrap { white-space: nowrap; } |
10 .pre { white-space: pre; } | 11 .pre { white-space: pre; } |
11 </style> | 12 </style> |
12 </head> | 13 </head> |
13 <body><div class="test pre"><span>1234</span>567890123456789 xxxx xxxx xx</div>
</body> | 14 <body><div class="test pre"><span>1234</span>567890123456789 xxxx xxxx xx</div>
</body> |
14 </html> | 15 </html> |
OLD | NEW |