| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/x
html1/DTD/xhtml1-strict.dtd"> |
| 2 |
| 3 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 4 |
| 5 <head> |
| 6 |
| 7 <title>CSS Reftest Reference</title> |
| 8 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserB
ugsSection/css21testsuite/" /> |
| 9 <link rel="author" title="Bruno Fassino" href="fassino[at]gmail.com" /> |
| 10 |
| 11 <style type="text/css"><![CDATA[ |
| 12 div#lime |
| 13 { |
| 14 background-color: lime; |
| 15 border-top: black solid 1px; |
| 16 height: 140px; |
| 17 width: 50%; |
| 18 } |
| 19 |
| 20 div#aqua |
| 21 { |
| 22 background-color: aqua; |
| 23 height: 60px; |
| 24 width: 50%; |
| 25 } |
| 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="lime"><img src="support/swatch-blue.png" height="100" width="100" alt
="Image download support must be enabled" /></div> |
| 41 |
| 42 <div id="aqua"></div> |
| 43 |
| 44 <div id="yellow"></div> |
| 45 |
| 46 </body> |
| 47 </html> |
| OLD | NEW |