| 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 |
| 10 <style type="text/css"><![CDATA[ |
| 11 div |
| 12 { |
| 13 border: black solid 5px; |
| 14 height: 192px; |
| 15 width: 192px; |
| 16 } |
| 17 |
| 18 img {vertical-align: top;} |
| 19 |
| 20 img#orange {border: white solid 10px;} |
| 21 ]]></style> |
| 22 |
| 23 </head> |
| 24 |
| 25 <body> |
| 26 |
| 27 <p>Test passes if the orange square is to the right of the blue square, space
needs to also separate the orange square from other squares.</p> |
| 28 |
| 29 <div><img src="support/swatch-blue.png" width="48" height="48" alt="Image down
load support must be enabled" /><img id="orange" src="support/swatch-orange.png"
width="48" height="48" alt="Image download support must be enabled" /></div> |
| 30 |
| 31 </body> |
| 32 </html> |
| OLD | NEW |