| 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>Parsing the 'font' shorthand</title> | 4 <title>Parsing the 'font' shorthand</title> |
| 5 <script src="../../resources/ahem.js"></script> |
| 5 <style type="text/css"> | 6 <style type="text/css"> |
| 6 .control { display: inline; font: 1em/1 Ahem, sans-serif; background: red; co
lor: white; } | 7 .control { display: inline; font: 1em/1 Ahem, sans-serif; background: red; co
lor: white; } |
| 7 p { color: green; margin: 1em; } | 8 p { color: green; margin: 1em; } |
| 8 .test { width: 6em; } | 9 .test { width: 6em; } |
| 9 span { background: red; color: white; } | 10 span { background: red; color: white; } |
| 10 .a { font: normal normal normal 1em/normal Ahem, serif; } | 11 .a { font: normal normal normal 1em/normal Ahem, serif; } |
| 11 .b { font: normal normal normal medium/normal Ahem, serif; } | 12 .b { font: normal normal normal medium/normal Ahem, serif; } |
| 12 .c { font: normal normal normal medium/1 Ahem, serif; } | 13 .c { font: normal normal normal medium/1 Ahem, serif; } |
| 13 .d { font: normal normal normal 1em/1 Ahem, serif; } | 14 .d { font: normal normal normal 1em/1 Ahem, serif; } |
| 14 .e { font: normal normal 1em/1 Ahem, serif; } | 15 .e { font: normal normal 1em/1 Ahem, serif; } |
| (...skipping 23 matching lines...) Expand all Loading... |
| 38 <p class="test h"> <span>FAIL-h</span> </p> | 39 <p class="test h"> <span>FAIL-h</span> </p> |
| 39 <p class="test i"> <span>FAIL-i</span> </p> | 40 <p class="test i"> <span>FAIL-i</span> </p> |
| 40 <p class="test j"> <span>FAIL-j</span> </p> | 41 <p class="test j"> <span>FAIL-j</span> </p> |
| 41 <p class="test k"> <span>FAIL-k</span> </p> | 42 <p class="test k"> <span>FAIL-k</span> </p> |
| 42 <p class="test l"> <span>FAIL-l</span> </p> | 43 <p class="test l"> <span>FAIL-l</span> </p> |
| 43 <p class="test m"> <span>FAIL-m</span> </p> | 44 <p class="test m"> <span>FAIL-m</span> </p> |
| 44 <p class="test n"> <span>FAIL-n</span> </p> | 45 <p class="test n"> <span>FAIL-n</span> </p> |
| 45 | 46 |
| 46 </body> | 47 </body> |
| 47 </html> | 48 </html> |
| OLD | NEW |