Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-grid-1/grid-items/grid-z-axis-ordering-002.xht

Issue 2670473003: [css-grid] Import W3C Test Suite (Closed)
Patch Set: Add comment about skipped tests Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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: 'z-index' property controls the z-axis orde r of grid items</title>
5 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igal ia.com" />
6 <link rel="help" href="http://www.w3.org/TR/css-grid-1/#z-order" title=" 4.4. Z-axis Ordering: the z-index property" />
7 <link rel="match" href="../../css21/reference/ref-filled-green-100px-squ are.xht" />
8 <meta name="flags" content="ahem" />
9 <style type="text/css"><![CDATA[
10 #grid {
11 display: grid;
12 font: 100px/1 Ahem;
13 }
14
15 #test-item-overlapping-green {
16 color: green;
17 }
18
19 #reference-item-overlapped-red {
20 color: red;
21 z-index: -1;
22 }
23
24 .first-row-first-column {
25 grid-area: 1 / 1;
26 }
27 ]]></style>
28 </head>
29 <body>
30 <p>Test passes if there is a filled green square and <strong>no red</str ong>.</p>
31
32 <div id="grid">
33 <div id="test-item-overlapping-green" class="first-row-first-column" >G</div>
34 <div id="reference-item-overlapped-red" class="first-row-first-colum n">R</div>
35 </div>
36 </body>
37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698