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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-justify-content-vertical-rl.html

Issue 1702013003: [css-grid] Swap columns and rows in grid-template shorthand (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Swap columns and rows in tests under fast/repaint/ 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 <head> 3 <head>
4 <link href="resources/grid.css" rel="stylesheet"> 4 <link href="resources/grid.css" rel="stylesheet">
5 <link href="resources/grid-alignment.css" rel="stylesheet"> 5 <link href="resources/grid-alignment.css" rel="stylesheet">
6 <script src="../../resources/check-layout.js"></script> 6 <script src="../../resources/check-layout.js"></script>
7 <style> 7 <style>
8 body { 8 body {
9 margin: 0; 9 margin: 0;
10 } 10 }
11 11
12 .grid { 12 .grid {
13 grid: 50px 50px / 100px 100px; 13 grid: 100px 100px / 50px 50px;
14 position: relative; 14 position: relative;
15 width: 300px; 15 width: 300px;
16 height: 200px; 16 height: 200px;
17 } 17 }
18 18
19 .cell { 19 .cell {
20 width: 20px; 20 width: 20px;
21 height: 40px; 21 height: 40px;
22 } 22 }
23 </style> 23 </style>
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 <div class="grid verticalRL directionRTL justifyContentEnd" data-expected-wi dth="300" data-expected-height="200"> 122 <div class="grid verticalRL directionRTL justifyContentEnd" data-expected-wi dth="300" data-expected-height="200">
123 <div class="cell firstRowFirstColumn" data-offset-x="280" data-offset-y= "60" data-expected-width="20" data-expected-height="40"></div> 123 <div class="cell firstRowFirstColumn" data-offset-x="280" data-offset-y= "60" data-expected-width="20" data-expected-height="40"></div>
124 <div class="firstRowSecondColumn" data-offset-x="200" data-offset-y="0" data-expected-width="100" data-expected-height="50"></div> 124 <div class="firstRowSecondColumn" data-offset-x="200" data-offset-y="0" data-expected-width="100" data-expected-height="50"></div>
125 <div class="secondRowFirstColumn" data-offset-x="100" data-offset-y="50" data-expected-width="100" data-expected-height="50"></div> 125 <div class="secondRowFirstColumn" data-offset-x="100" data-offset-y="50" data-expected-width="100" data-expected-height="50"></div>
126 <div class="cell secondRowSecondColumn" data-offset-x="180" data-offset- y="10" data-expected-width="20" data-expected-height="40"></div> 126 <div class="cell secondRowSecondColumn" data-offset-x="180" data-offset- y="10" data-expected-width="20" data-expected-height="40"></div>
127 </div> 127 </div>
128 </div> 128 </div>
129 129
130 </body> 130 </body>
131 </html> 131 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698