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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-self-baseline-01.html

Issue 1407633003: [css-grid] Implementation of Baseline Self-Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Improving the skipped tesst by solving some rounding issues Created 3 years, 8 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 <link href="resources/grid.css" rel="stylesheet">
3 <link href="resources/grid-alignment.css" rel="stylesheet">
4 <style>
5 body { margin: 0; }
6 .block {
7 background: grey;
8 float: left;
9 margin: 5px;
10 text-orientation: sideways;
11 }
12 .block > :nth-child(1) { font-size:24px; }
13 .block > :nth-child(2) { font-size:32px; }
14 .block > :nth-child(3) { font-size:48px; }
15 .block > :nth-child(4) { font-size:64px; }
16 .item {
17 border-width: 2px 5px 3px 4px;
18 border-style: solid;
19 padding: 6px 3px 7px 8px;
20 margin: 10px 6px 4px 12px;
21 }
22 .extraBottomPadding { padding-bottom: 30px; }
23 .extraLeftPadding { padding-left: 30px; }
24 .grid { grid: 125px / 60px 60px 75px 100px; }
25 </style>
26
27 <p>1x4 with parallel items.<br>All items share 'first-row' Baseline Context. No item shares any column-like Baseline Context.<br>The 'align-self' property (orth ogonal to the shared context) aligns all items along the baseline-axis using the row-like baseline.</p>
28 <div class="block grid contentStart justifyItemsStart alignItemsBaseline"><div c lass="item">A</div><div class="item">A</div><div class="item">A</div><div class= "item">A</div></div>
29 <div class="block grid contentStart justifyItemsStart alignItemsBaseline"><div c lass="item extraBottomPadding">A</div><div class="item">A</div><div class="item" >A</div><div class="item">A</div></div>
30
31 <br clear="all">
32
33 <div class="block grid verticalLR contentStart justifyItemsStart alignItemsBasel ine"><div class="item">A</div><div class="item">A</div><div class="item">A</div> <div class="item">A</div></div>
34 <div class="block grid verticalLR contentStart justifyItemsStart alignItemsBasel ine"><div class="item extraLeftPadding">A</div><div class="item">A</div><div cla ss="item">A</div><div class="item">A</div></div>
35 <div class="block grid verticalRL contentStart justifyItemsStart alignItemsBasel ine"><div class="item">A</div><div class="item">A</div><div class="item">A</div> <div class="item">A</div></div>
36 <div class="block grid verticalRL contentStart justifyItemsStart alignItemsBasel ine"><div class="item extraLeftPadding">A</div><div class="item">A</div><div cla ss="item">A</div><div class="item">A</div></div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698