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

Side by Side Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-grid-1/grid-items/grid-layout-z-order-a-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 <title>CSS Grid Layout Reference</title>
5 <link rel="author" title="Leo Deng" href="mailto:myst.dg@gmail.com">
6 <style>
7 body {
8 margin: 0;
9 padding: 0;
10 border: 0 none;
11 }
12 #caseTitle {
13 margin: 10px;
14 height: 40px;
15 }
16 #grid {
17 margin: 0;
18 width: 150px;
19 color:white;
20 }
21 .a {
22 background: blue;
23 width: 100px;
24 float:left
25 }
26 .b {
27 background: yellow;
28 width: 50px;
29 float:left;
30 }
31 </style>
32 </head>
33 <body>
34 <p id="caseTitle">The test passes if it has the same visual effect as refere nce.</p>
35 <div id="grid">
36 <div class="a">up</div>
37 <div class="b">&nbsp;</div>
38 </div>
39 </body>
40 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698