| 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: 'vertical-align' has no effect on grid item
s within an inline grid</title> |
| 5 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igal
ia.com" /> |
| 6 <link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/
BrowserBugsSection/css21testsuite/" /> <!-- 2014-12-10 --> |
| 7 <link rel="help" href="http://www.w3.org/TR/css-grid-1/#grid-containers"
title="3.1 Establishing Grid Containers" /> |
| 8 <link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-v
ertical-align" title="10.8.1 Leading and half-leading" /> |
| 9 <link rel="match" href="../../css21/reference/ref-filled-green-100px-squ
are.xht" /> |
| 10 <meta name="flags" content="ahem" /> |
| 11 <style type="text/css"><![CDATA[ |
| 12 #reference-overlapped-red { |
| 13 position: absolute; |
| 14 background-color: red; |
| 15 width: 100px; |
| 16 height: 100px; |
| 17 z-index: -1; |
| 18 } |
| 19 |
| 20 #test-inline-grid-overlapping-green { |
| 21 display: inline-grid; |
| 22 font: 50px/1 Ahem; |
| 23 color: green; |
| 24 } |
| 25 |
| 26 #vertical-align { |
| 27 vertical-align: 125px; |
| 28 } |
| 29 ]]></style> |
| 30 </head> |
| 31 <body> |
| 32 <p>Test passes if there is a filled green square and <strong>no red</str
ong>.</p> |
| 33 |
| 34 <div id="reference-overlapped-red"></div> |
| 35 |
| 36 <div id="test-inline-grid-overlapping-green"> |
| 37 <span>1s</span> |
| 38 <span id="vertical-align">2n</span> |
| 39 </div> |
| 40 </body> |
| 41 </html> |
| OLD | NEW |