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

Side by Side Diff: third_party/WebKit/LayoutTests/external/csswg-test/css-grid-1/placement/grid-layout-grid-span-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 }
20 .a {
21 background: blue;
22 width: 100px;
23 float:left
24 }
25 .b {
26 background: yellow;
27 width: 50px;
28 float:left;
29 }
30 </style>
31 </head>
32 <body>
33 <p id="caseTitle">The test passes if it has the same visual effect as refere nce.</p>
34 <div id="grid">
35 <div class="a">&nbsp;</div>
36 <div class="b">&nbsp;</div>
37 </div>
38 </body>
39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698