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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/implicit-columns-auto-resolution.html

Issue 1583433002: [css-align] New CSS Value 'normal' for Content Alignment (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed layout tests failing. Created 4 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <link href="resources/grid.css" rel="stylesheet"> 3 <link href="resources/grid.css" rel="stylesheet">
4 <link href="resources/grid-alignment.css" rel="stylesheet">
4 <style> 5 <style>
5 .gridAutoContent { 6 .gridAutoContent {
6 /* grid-template-columns is left unset so that the grid item's column is imp licit. */ 7 /* grid-template-columns is left unset so that the grid item's column is imp licit. */
7 grid-template-rows: 50px; 8 grid-template-rows: 50px;
8 } 9 }
9 10
10 .firstRowFirstColumn { 11 .firstRowFirstColumn {
11 font: 10px/1 Ahem; 12 font: 10px/1 Ahem;
12 /* Make us fit our grid area. */ 13 /* Make us fit our grid area. */
13 width: 100%; 14 width: 100%;
(...skipping 12 matching lines...) Expand all
26 </div> 27 </div>
27 28
28 <!-- Allow the extra logical space distribution to occur. --> 29 <!-- Allow the extra logical space distribution to occur. -->
29 <div style="width: 40px; height: 10px"> 30 <div style="width: 40px; height: 10px">
30 <div class="grid gridAutoContent"> 31 <div class="grid gridAutoContent">
31 <div class="firstRowFirstColumn" data-expected-width="40" data-expected- height="50">XX XX XX XX XX XX</div> 32 <div class="firstRowFirstColumn" data-expected-width="40" data-expected- height="50">XX XX XX XX XX XX</div>
32 </div> 33 </div>
33 </div> 34 </div>
34 35
35 <div style="width: 100px; height: 10px;"> 36 <div style="width: 100px; height: 10px;">
36 <div class="grid gridAutoContent"> 37 <div class="grid gridAutoContent justifyContentStart">
37 <div class="firstRowFirstColumn" data-expected-width="50" data-expected- height="50">XXXXX</div> 38 <div class="firstRowFirstColumn" data-expected-width="50" data-expected- height="50">XXXXX</div>
38 </div> 39 </div>
39 </div> 40 </div>
40 41
41 </body> 42 </body>
42 </html> 43 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698