| 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 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 3 <head> |
| 4 <title>CSS Grid Layout Test: Reference file 2x2 grid and cells with the
following colors: blue, yellow, lime and magenta</title> |
| 5 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igal
ia.com" /> |
| 6 <style type="text/css"><![CDATA[ |
| 7 div { |
| 8 font: 50px/1 Ahem; |
| 9 } |
| 10 |
| 11 #blue { |
| 12 color: blue; |
| 13 } |
| 14 |
| 15 #yellow { |
| 16 color: yellow; |
| 17 } |
| 18 |
| 19 #lime { |
| 20 color: lime; |
| 21 } |
| 22 |
| 23 #magenta { |
| 24 color: magenta; |
| 25 } |
| 26 ]]></style> |
| 27 </head> |
| 28 <body> |
| 29 <p>Test passes if there are four filled squares with the same size and <
strong>no red</strong>.</p> |
| 30 <p>Blue and yellow squares in the first line; lime and magenta squares i
n the second line (exactly in this order).</p> |
| 31 |
| 32 <div> |
| 33 <span id="blue">B</span><span id="yellow">Y</span> |
| 34 <br /> |
| 35 <span id="lime">L</span><span id="magenta">M</span> |
| 36 </div> |
| 37 </body> |
| 38 </html> |
| OLD | NEW |