| 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 p {color: blue;} |
| 13 |
| 14 div {font-size: 20px;} |
| 15 |
| 16 div#A |
| 17 { |
| 18 border: fuchsia solid 1px; |
| 19 color: fuchsia; |
| 20 margin: 20px 4px 4px 4px; |
| 21 padding: 4px; |
| 22 width: 240px; |
| 23 } |
| 24 |
| 25 span |
| 26 { |
| 27 border: orange solid 1px; |
| 28 color: orange; |
| 29 display: inline-block; |
| 30 margin: 4px; |
| 31 padding: 4px; |
| 32 } |
| 33 |
| 34 span#B |
| 35 { |
| 36 margin-right: 8px; |
| 37 width: 280px; |
| 38 } |
| 39 |
| 40 span#C {width: 80px;} |
| 41 ]]></style> |
| 42 |
| 43 </head> |
| 44 |
| 45 <body> |
| 46 |
| 47 <p>C must not be above B.</p> |
| 48 |
| 49 <div id="A">A</div> |
| 50 |
| 51 <div><span id="B">B</span><span id="C">C</span></div> |
| 52 |
| 53 </body> |
| 54 </html> |
| OLD | NEW |