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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/css/css-grid-1/abspos/positioned-grid-items-008-ref.html

Issue 2665133003: [css-grid] Fix behavior of positioned items without specific dimensions (Closed)
Patch Set: Applied suggested changes Created 3 years, 7 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 <meta charset="utf-8">
3 <title>CSS Grid Layout Test: Positioned grid items reference file</title>
4 <link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
5 <style>
6 #grid {
7 display: grid;
8 grid: 150px 100px / 200px 300px;
9 justify-items: start;
10 margin: 1px 2px 3px 4px;
11 padding: 20px 15px 10px 5px;
12 border-width: 9px 3px 12px 6px;
13 border-style: solid;
14 width: 550px;
15 height: 400px;
16 }
17
18 #firstItem {
19 background: magenta;
20 }
21
22 #secondItem {
23 background: cyan;
24 }
25
26 #thirdItem {
27 background: yellow;
28 }
29
30 #fourthItem {
31 background: lime;
32 }
33 </style>
34
35 <p>The test passes if it has the same output than the reference.</p>
36
37 <div id="grid">
38 <div id="firstItem">First item</div>
39 <div id="secondItem">Second item</div>
40 <div id="thirdItem">Third item</div>
41 <div id="fourthItem">Fourth item</div>
42 </div>
43
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698