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

Side by Side Diff: LayoutTests/fast/css-grid-layout/grid-item-sizing-with-orthogonal-flows.html

Issue 815833005: [css-grid] Handle min-content/max-content with orthogonal flows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Solving positioning issues. Created 5 years, 11 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 <link href="resources/grid.css" rel="stylesheet">
5 <style>
6 body {
7 margin: 0;
8 }
9
10 .container {
11 position: relative;
12 }
13
14 .fixedWidth {
15 width: 150px;
16 }
17
18 .fixedHeight {
19 height: 150px;
20 }
21
22 .grid {
23 font: 10px/1 Ahem;
24 align-items: start;
25 justify-items: start;
26 }
27 </style>
28 </head>
29 <body>
30
31 <p>This test checks that grid sizing works as expected with orthogonal flows.</p >
32
33 <div class="container">
34 <p>HORIZONTAL-TB container with VERTICAL-RL items.</p>
35 <div class="grid fixedWidth">
36 <div class="verticalRL firstRowFirstColumn">X X X X X X X X X X X X X</d iv>
37 </div>
38 </div>
39
40 <div class="container">
41 <p>VERTICAL-RL container with HORIZONTAL-TB items.</p>
42 <div class="grid fixedHeight verticalLR">
43 <div class="firstRowFirstColumn horizontalTB">X X X X X X X X X X X X X< /div>
44 </div>
45 </div>
46
47 </body>
48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698