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

Side by Side Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-grid-1/implicit-grids/grid-support-grid-auto-columns-rows-001-expected.html

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>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>CSS Grid Layout Test: Support for 'grid-auto-columns' and 'grid-a uto-rows' properties</title>
6 <link rel="author" title="Joao Oliveira" href="mailto:hello@jxs.pt"/>
7 <style>
8 #grid {
9 position: relative;
10 }
11 .position {
12 position: absolute;
13 top: 0;
14 left: 0;
15 }
16 #first-column-first-row {
17 width: 30px;
18 height: 30px;
19 background-color: purple;
20 }
21 #third-column-first-and-second-rows {
22 left: 60px;
23 width: 30px;
24 height: 60px;
25 background-color: orange
26 }
27 #first-and-second-columns-second-row {
28 top: 30px;
29 width: 60px;
30 height: 30px;
31 background-color: blue;
32 }
33 </style>
34 </head>
35 <body>
36 <p>The test passes if it has the same visual effect as reference.</p>
37 <div id="grid">
38 <div class="position" id="first-column-first-row"></div>
39 <div class="position" id="third-column-first-and-second-rows"></div>
40 <div class="position" id="first-and-second-columns-second-row"></div >
41 </div>
42 </body>
43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698