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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-children-writing-modes.html

Issue 1608943003: [css-grid] Fix positioned items in grids with implicit tracks (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test as we need explicit lines Created 4 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-items-implicit-grid.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <style> 4 <style>
5 5
6 .grid { 6 .grid {
7 margin: 1px; 7 margin: 1px;
8 width: 50px; 8 width: 50px;
9 height: 25px; 9 height: 25px;
10 grid: 100% / 100%;
10 padding: 5px 10px 15px 20px; 11 padding: 5px 10px 15px 20px;
11 /* Ensures that the grid container is the containing block of the grid child ren. */ 12 /* Ensures that the grid container is the containing block of the grid child ren. */
12 position: relative; 13 position: relative;
13 } 14 }
14 15
15 .absolute { 16 .absolute {
16 position: absolute; 17 position: absolute;
17 } 18 }
18 19
19 .onlyFirstRowOnlyFirstColumn { 20 .onlyFirstRowOnlyFirstColumn {
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 <div class="sizedToGridArea absolute onlyFirstRowOnlyFirstColumn">XX</div> 72 <div class="sizedToGridArea absolute onlyFirstRowOnlyFirstColumn">XX</div>
72 </div> 73 </div>
73 74
74 <div class="grid horizontalBT directionRTL"> 75 <div class="grid horizontalBT directionRTL">
75 <div class="sizedToGridArea red"></div> 76 <div class="sizedToGridArea red"></div>
76 <div class="sizedToGridArea absolute onlyFirstRowOnlyFirstColumn">XX</div> 77 <div class="sizedToGridArea absolute onlyFirstRowOnlyFirstColumn">XX</div>
77 </div> 78 </div>
78 79
79 </body> 80 </body>
80 </html> 81 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-positioned-items-implicit-grid.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698