| 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 |
| 9 <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserB
ugsSection/css21testsuite/" /> |
| 10 |
| 11 <style type="text/css"><![CDATA[ |
| 12 span {font: 20px/1 Ahem;} |
| 13 |
| 14 div > span {border: blue solid 2px;} |
| 15 |
| 16 span#yellow-stripe {color: yellow;} |
| 17 |
| 18 span#orange-stripe {color: orange;} |
| 19 ]]></style> |
| 20 |
| 21 </head> |
| 22 |
| 23 <body> |
| 24 |
| 25 <p>Test passes if the yellow stripe is on the left-hand side of the hollow blu
e rectangle and the orange stripe is on the right-hand side of the hollow blue r
ectangle.</p> |
| 26 |
| 27 <div> |
| 28 <span><span id="yellow-stripe">123456</span>  
; <span id="orange-stripe">123456</span></span> |
| 29 </div> |
| 30 |
| 31 </body> |
| 32 </html> |
| OLD | NEW |