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

Side by Side Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-grid-1/grid-definition/grid-layout-repeat-notation-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 }
11 #caseTitle {
12 margin: 10px;
13 height: 40px;
14 }
15 #grid {
16 width: 450px;
17 position: relative;
18 }
19 .a {
20 background: blue;
21 width: 100px;
22 float:left
23 }
24 .b {
25 background: yellow;
26 width: 100px;
27 float:left
28 }
29 .c {
30 background: orange;
31 width: 100px;
32 float:left
33 }
34 .d {
35 background: cyan;
36 width: 100px;
37 float:left
38 }
39 .e {
40 background: pink;
41 width: 50px;
42 float:left
43 }
44 </style>
45 </head>
46 <body>
47 <p id="caseTitle">The test passes if it has the same visual effect as refere nce.</p>
48 <div id="grid">
49 <div class="a">&nbsp;</div>
50 <div class="b">&nbsp;</div>
51 <div class="c">&nbsp;</div>
52 <div class="d">&nbsp;</div>
53 <div class="e">&nbsp;</div>
54 </div>
55 </body>
56 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698