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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-align-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 <script src="../../resources/check-layout.js"></script> 5 <script src="../../resources/check-layout.js"></script>
6 <style> 6 <style>
7 body { 7 body {
8 margin: 0; 8 margin: 0;
9 } 9 }
10 10
11 .grid { 11 .grid {
12 grid: 50px 50px / 100px 100px; 12 grid: 100px 100px / 50px 50px;
13 position: relative; 13 position: relative;
14 width: 300px; 14 width: 300px;
15 height: 200px; 15 height: 200px;
16 } 16 }
17 17
18 .cell { 18 .cell {
19 width: 20px; 19 width: 20px;
20 height: 40px; 20 height: 40px;
21 } 21 }
22 22
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 <div class="grid directionRTL verticalRL alignContentEnd" data-expected-widt h="300" data-expected-height="200"> 150 <div class="grid directionRTL verticalRL alignContentEnd" data-expected-widt h="300" data-expected-height="200">
151 <div class="cell firstRowFirstColumn" data-offset-x="180" data-offset-y= "160" data-expected-width="20" data-expected-height="40"></div> 151 <div class="cell firstRowFirstColumn" data-offset-x="180" data-offset-y= "160" data-expected-width="20" data-expected-height="40"></div>
152 <div class="firstRowSecondColumn" data-offset-x="100" data-offset-y="100 " data-expected-width="100" data-expected-height="50"></div> 152 <div class="firstRowSecondColumn" data-offset-x="100" data-offset-y="100 " data-expected-width="100" data-expected-height="50"></div>
153 <div class="secondRowFirstColumn" data-offset-x="00" data-offset-y="150" data-expected-width="100" data-expected-height="50"></div> 153 <div class="secondRowFirstColumn" data-offset-x="00" data-offset-y="150" data-expected-width="100" data-expected-height="50"></div>
154 <div class="cell secondRowSecondColumn" data-offset-x="80" data-offset-y ="110" data-expected-width="20" data-expected-height="40"></div> 154 <div class="cell secondRowSecondColumn" data-offset-x="80" data-offset-y ="110" data-expected-width="20" data-expected-height="40"></div>
155 </div> 155 </div>
156 </div> 156 </div>
157 157
158 </body> 158 </body>
159 </html> 159 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698