| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/st
rict.dtd"> | |
| 2 <html> | |
| 3 | |
| 4 <head> | |
| 5 | |
| 6 <title>CSS Reftest Reference</title> | |
| 7 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserB
ugsSection/css21testsuite/"> | |
| 8 <link rel="author" title="Bruno Fassino" href="fassino[at]gmail.com"> | |
| 9 | |
| 10 <style type="text/css"> | |
| 11 div#aqua | |
| 12 { | |
| 13 background-color: aqua; | |
| 14 height: 60px; | |
| 15 width: 50%; | |
| 16 } | |
| 17 | |
| 18 div#lime | |
| 19 { | |
| 20 background-color: lime; | |
| 21 line-height: 140px; | |
| 22 width: 50%; | |
| 23 } | |
| 24 | |
| 25 img {vertical-align: bottom;} | |
| 26 | |
| 27 div#yellow | |
| 28 { | |
| 29 background-color: yellow; | |
| 30 height: 100px; | |
| 31 } | |
| 32 </style> | |
| 33 | |
| 34 </head> | |
| 35 | |
| 36 <body> | |
| 37 | |
| 38 <p>Test passes if there is <strong>no red</strong>.</p> | |
| 39 | |
| 40 <div id="aqua"></div> | |
| 41 | |
| 42 <div id="lime"><img src="support/swatch-blue.png" height="100" width="100" alt
="Image download support must be enabled"></div> | |
| 43 | |
| 44 <div id="yellow"></div> | |
| 45 | |
| 46 </body> | |
| 47 </html> | |
| OLD | NEW |