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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css-grid-layout/grid-align-justify-stretch.html

Issue 1488493003: [css-grid] refactoring of layout tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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="../css-intrinsic-dimensions/resources/width-keyword-classes.css" rel ="stylesheet">
4 <link href="resources/grid.css" rel="stylesheet"> 5 <link href="resources/grid.css" rel="stylesheet">
5 <script src="../../resources/check-layout.js"></script> 6 <script src="../../resources/check-layout.js"></script>
6 <style> 7 <style>
7 body { 8 body {
8 margin: 0; 9 margin: 0;
9 } 10 }
10 11
11 .grid { 12 .grid {
12 grid-template-columns: 100px 100px; 13 grid-template-columns: 100px 100px;
13 grid-template-rows: 200px 200px; 14 grid-template-rows: 200px 200px;
14 width: -webkit-fit-content;
15 margin-bottom: 20px; 15 margin-bottom: 20px;
16 } 16 }
17 17
18 .widthAndHeightSet { 18 .widthAndHeightSet {
19 width: 20px; 19 width: 20px;
20 height: 40px; 20 height: 40px;
21 } 21 }
22 22
23 .onlyWidthSet { 23 .onlyWidthSet {
24 width: 20px; 24 width: 20px;
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 .justifySelfStart { 91 .justifySelfStart {
92 justify-self: start; 92 justify-self: start;
93 } 93 }
94 </style> 94 </style>
95 </head> 95 </head>
96 <body onload="checkLayout('.grid')"> 96 <body onload="checkLayout('.grid')">
97 97
98 <p>This test checks that the 'stretch' value is applied correctly for 'align' an d 'justify' properties.</p> 98 <p>This test checks that the 'stretch' value is applied correctly for 'align' an d 'justify' properties.</p>
99 99
100 <div style="position: relative"> 100 <div style="position: relative">
101 <div class="grid" data-expected-width="200" data-expected-height="400"> 101 <div class="grid fit-content" data-expected-width="200" data-expected-height ="400">
102 <div class="alignSelfStretch justifySelfStart firstRowFirstColumn" data- offset-x="0" data-offset-y="0" data-expected-width="0" data-expected-height="200 "></div> 102 <div class="alignSelfStretch justifySelfStart firstRowFirstColumn" data- offset-x="0" data-offset-y="0" data-expected-width="0" data-expected-height="200 "></div>
103 <div class="widthAndHeightSet alignSelfStretch justifySelfStart firstRow SecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" dat a-expected-height="40"></div> 103 <div class="widthAndHeightSet alignSelfStretch justifySelfStart firstRow SecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" dat a-expected-height="40"></div>
104 <div class="onlyWidthSet alignSelfStretch justifySelfStart secondRowFirs tColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20" data-exp ected-height="200"></div> 104 <div class="onlyWidthSet alignSelfStretch justifySelfStart secondRowFirs tColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20" data-exp ected-height="200"></div>
105 <div class="onlyHeightSet alignSelfStretch justifySelfStart secondRowSec ondColumn" data-offset-x="100" data-offset-y="200" data-expected-width="0" data- expected-height="40"></div> 105 <div class="onlyHeightSet alignSelfStretch justifySelfStart secondRowSec ondColumn" data-offset-x="100" data-offset-y="200" data-expected-width="0" data- expected-height="40"></div>
106 </div> 106 </div>
107 </div> 107 </div>
108 108
109 <div style="position: relative"> 109 <div style="position: relative">
110 <div class="grid" data-expected-width="200" data-expected-height="400"> 110 <div class="grid fit-content" data-expected-width="200" data-expected-height ="400">
111 <div class="alignSelfStart justifySelfStretch firstRowFirstColumn" data- offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height="0 "></div> 111 <div class="alignSelfStart justifySelfStretch firstRowFirstColumn" data- offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height="0 "></div>
112 <div class="widthAndHeightSet alignSelfStart justifySelfStretch firstRow SecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" dat a-expected-height="40"></div> 112 <div class="widthAndHeightSet alignSelfStart justifySelfStretch firstRow SecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" dat a-expected-height="40"></div>
113 <div class="onlyWidthSet alignSelfStart justifySelfStretch secondRowFirs tColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20" data-exp ected-height="0"></div> 113 <div class="onlyWidthSet alignSelfStart justifySelfStretch secondRowFirs tColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20" data-exp ected-height="0"></div>
114 <div class="onlyHeightSet alignSelfStart justifySelfStretch secondRowSec ondColumn" data-offset-x="100" data-offset-y="200" data-expected-width="100" dat a-expected-height="40"></div> 114 <div class="onlyHeightSet alignSelfStart justifySelfStretch secondRowSec ondColumn" data-offset-x="100" data-offset-y="200" data-expected-width="100" dat a-expected-height="40"></div>
115 </div> 115 </div>
116 </div> 116 </div>
117 117
118 <div style="position: relative"> 118 <div style="position: relative">
119 <div class="grid" data-expected-width="200" data-expected-height="400"> 119 <div class="grid fit-content" data-expected-width="200" data-expected-height ="400">
120 <div class="maxHeight alignSelfStretch justifySelfStart firstRowFirstCol umn" data-offset-x="0" data-offset-y="0" data-expected-width="0" data-expected-h eight="160"></div> 120 <div class="maxHeight alignSelfStretch justifySelfStart firstRowFirstCol umn" data-offset-x="0" data-offset-y="0" data-expected-width="0" data-expected-h eight="160"></div>
121 <div class="minWidth widthAndHeightSet alignSelfStretch justifySelfStart firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width ="120" data-expected-height="40"></div> 121 <div class="minWidth widthAndHeightSet alignSelfStretch justifySelfStart firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width ="120" data-expected-height="40"></div>
122 <div class="minHeight onlyWidthSet alignSelfStretch justifySelfStart sec ondRowFirstColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20 " data-expected-height="220"></div> 122 <div class="minHeight onlyWidthSet alignSelfStretch justifySelfStart sec ondRowFirstColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20 " data-expected-height="220"></div>
123 <div class="maxWidth onlyHeightSet alignSelfStretch justifySelfStretch s econdRowSecondColumn" data-offset-x="100" data-offset-y="200" data-expected-widt h="90" data-expected-height="40"></div> 123 <div class="maxWidth onlyHeightSet alignSelfStretch justifySelfStretch s econdRowSecondColumn" data-offset-x="100" data-offset-y="200" data-expected-widt h="90" data-expected-height="40"></div>
124 </div> 124 </div>
125 </div> 125 </div>
126 126
127 <div style="position: relative"> 127 <div style="position: relative">
128 <div class="grid" data-expected-width="200" data-expected-height="400"> 128 <div class="grid fit-content" data-expected-width="200" data-expected-height ="400">
129 <div class="alignSelfStretch justifySelfStretch firstRowFirstColumn" dat a-offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height= "200"></div> 129 <div class="alignSelfStretch justifySelfStretch firstRowFirstColumn" dat a-offset-x="0" data-offset-y="0" data-expected-width="100" data-expected-height= "200"></div>
130 <div class="widthAndHeightSet alignSelfStretch justifySelfStretch firstR owSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" d ata-expected-height="40"></div> 130 <div class="widthAndHeightSet alignSelfStretch justifySelfStretch firstR owSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" d ata-expected-height="40"></div>
131 <div class="onlyWidthSet alignSelfStretch justifySelfStretch secondRowFi rstColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20" data-e xpected-height="200"></div> 131 <div class="onlyWidthSet alignSelfStretch justifySelfStretch secondRowFi rstColumn" data-offset-x="0" data-offset-y="200" data-expected-width="20" data-e xpected-height="200"></div>
132 <div class="onlyHeightSet alignSelfStretch justifySelfStretch secondRowS econdColumn" data-offset-x="100" data-offset-y="200" data-expected-width="100" d ata-expected-height="40"></div> 132 <div class="onlyHeightSet alignSelfStretch justifySelfStretch secondRowS econdColumn" data-offset-x="100" data-offset-y="200" data-expected-width="100" d ata-expected-height="40"></div>
133 </div> 133 </div>
134 </div> 134 </div>
135 135
136 <div style="position: relative"> 136 <div style="position: relative">
137 <div class="grid alignItemsStretch justifyItemsStart" data-expected-width="2 00" data-expected-height="400"> 137 <div class="grid fit-content alignItemsStretch justifyItemsStart" data-expec ted-width="200" data-expected-height="400">
138 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="0" data-expected-height="200"></div> 138 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="0" data-expected-height="200"></div>
139 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> 139 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
140 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of fset-y="200" data-expected-width="20" data-expected-height="200"></div> 140 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of fset-y="200" data-expected-width="20" data-expected-height="200"></div>
141 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat a-offset-y="200" data-expected-width="0" data-expected-height="40"></div> 141 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat a-offset-y="200" data-expected-width="0" data-expected-height="40"></div>
142 </div> 142 </div>
143 </div> 143 </div>
144 144
145 <div style="position: relative"> 145 <div style="position: relative">
146 <div class="grid alignItemsStart justifyItemsStretch" data-expected-width="2 00" data-expected-height="400"> 146 <div class="grid fit-content alignItemsStart justifyItemsStretch" data-expec ted-width="200" data-expected-height="400">
147 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="100" data-expected-height="0"></div> 147 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="100" data-expected-height="0"></div>
148 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> 148 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
149 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of fset-y="200" data-expected-width="20" data-expected-height="0"></div> 149 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of fset-y="200" data-expected-width="20" data-expected-height="0"></div>
150 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat a-offset-y="200" data-expected-width="100" data-expected-height="40"></div> 150 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat a-offset-y="200" data-expected-width="100" data-expected-height="40"></div>
151 </div> 151 </div>
152 </div> 152 </div>
153 153
154 <div style="position: relative"> 154 <div style="position: relative">
155 <div class="grid alignItemsStretch justifyItemsStretch" data-expected-width= "200" data-expected-height="400"> 155 <div class="grid fit-content alignItemsStretch justifyItemsStretch" data-exp ected-width="200" data-expected-height="400">
156 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="100" data-expected-height="200"></div> 156 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="100" data-expected-height="200"></div>
157 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> 157 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
158 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of fset-y="200" data-expected-width="20" data-expected-height="200"></div> 158 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of fset-y="200" data-expected-width="20" data-expected-height="200"></div>
159 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat a-offset-y="200" data-expected-width="100" data-expected-height="40"></div> 159 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat a-offset-y="200" data-expected-width="100" data-expected-height="40"></div>
160 </div> 160 </div>
161 </div> 161 </div>
162 162
163 <div style="position: relative"> 163 <div style="position: relative">
164 <div class="grid alignItemsAuto justifyItemsAuto" data-expected-width="200" data-expected-height="400"> 164 <div class="grid fit-content alignItemsAuto justifyItemsAuto" data-expected- width="200" data-expected-height="400">
165 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="100" data-expected-height="200"></div> 165 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="100" data-expected-height="200"></div>
166 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> 166 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
167 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of fset-y="200" data-expected-width="20" data-expected-height="200"></div> 167 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of fset-y="200" data-expected-width="20" data-expected-height="200"></div>
168 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat a-offset-y="200" data-expected-width="100" data-expected-height="40"></div> 168 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat a-offset-y="200" data-expected-width="100" data-expected-height="40"></div>
169 </div> 169 </div>
170 </div> 170 </div>
171 171
172 <div style="position: relative"> 172 <div style="position: relative">
173 <div class="grid" data-expected-width="200" data-expected-height="400"> 173 <div class="grid fit-content" data-expected-width="200" data-expected-height ="400">
174 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="100" data-expected-height="200"></div> 174 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="100" data-expected-height="200"></div>
175 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div> 175 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
176 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of fset-y="200" data-expected-width="20" data-expected-height="200"></div> 176 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="0" data-of fset-y="200" data-expected-width="20" data-expected-height="200"></div>
177 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat a-offset-y="200" data-expected-width="100" data-expected-height="40"></div> 177 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="100" dat a-offset-y="200" data-expected-width="100" data-expected-height="40"></div>
178 </div> 178 </div>
179 </div> 179 </div>
180 180
181 <div style="position: relative"> 181 <div style="position: relative">
182 <div class="grid" data-expected-width="200" data-expected-height="400"> 182 <div class="grid fit-content" data-expected-width="200" data-expected-height ="400">
183 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="100" data-expected-height="200"></div> 183 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="100" data-expected-height="200"></div>
184 <div class="firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="100" data-expected-height="200"></div> 184 <div class="firstRowSecondColumn" data-offset-x="100" data-offset-y="0" data-expected-width="100" data-expected-height="200"></div>
185 <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="200" data-expected-width="100" data-expected-height="200"></div> 185 <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="200" data-expected-width="100" data-expected-height="200"></div>
186 <div class="secondRowSecondColumn" data-offset-x="100" data-offset-y="20 0" data-expected-width="100" data-expected-height="200"></div> 186 <div class="secondRowSecondColumn" data-offset-x="100" data-offset-y="20 0" data-expected-width="100" data-expected-height="200"></div>
187 </div> 187 </div>
188 </div> 188 </div>
189 189
190 <!-- RTL direction (it should not affect the block-flow direction). --> 190 <!-- RTL direction (it should not affect the block-flow direction). -->
191 <div style="position: relative"> 191 <div style="position: relative">
192 <div class="grid directionRTL alignItemsStretch justifyItemsStretch" data-ex pected-width="200" data-expected-height="400"> 192 <div class="grid fit-content directionRTL alignItemsStretch justifyItemsStre tch" data-expected-width="200" data-expected-height="400">
193 <div class="firstRowFirstColumn" data-offset-x="100" data-offset-y="0" d ata-expected-width="100" data-expected-height="200"></div> 193 <div class="firstRowFirstColumn" data-offset-x="100" data-offset-y="0" d ata-expected-width="100" data-expected-height="200"></div>
194 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="80" d ata-offset-y="0" data-expected-width="20" data-expected-height="40"></div> 194 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="80" d ata-offset-y="0" data-expected-width="20" data-expected-height="40"></div>
195 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="180" data- offset-y="200" data-expected-width="20" data-expected-height="200"></div> 195 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="180" data- offset-y="200" data-expected-width="20" data-expected-height="200"></div>
196 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="0" data- offset-y="200" data-expected-width="100" data-expected-height="40"></div> 196 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="0" data- offset-y="200" data-expected-width="100" data-expected-height="40"></div>
197 </div> 197 </div>
198 </div> 198 </div>
199 199
200 <!-- RTL direction (it should not affect the block-flow) with opposite direction s grid container vs grid item. --> 200 <!-- RTL direction (it should not affect the block-flow) with opposite direction s grid container vs grid item. -->
201 <div style="position: relative"> 201 <div style="position: relative">
202 <div class="grid alignItemsStretch justifyItemsStretch" data-expected-width= "200" data-expected-height="400"> 202 <div class="grid fit-content alignItemsStretch justifyItemsStretch" data-exp ected-width="200" data-expected-height="400">
203 <div class="firstRowFirstColumn directionRTL" data-offset-x="0" data-of fset-y="0" data-expected-width="100" data-expected-height="200"></div> 203 <div class="firstRowFirstColumn directionRTL" data-offset-x="0" data-of fset-y="0" data-expected-width="100" data-expected-height="200"></div>
204 <div class="widthAndHeightSet firstRowSecondColumn directionRTL" data-o ffset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="4 0"></div> 204 <div class="widthAndHeightSet firstRowSecondColumn directionRTL" data-o ffset-x="100" data-offset-y="0" data-expected-width="20" data-expected-height="4 0"></div>
205 <div class="onlyWidthSet secondRowFirstColumn directionRTL" data-offset -x="0" data-offset-y="200" data-expected-width="20" data-expected-height="200">< /div> 205 <div class="onlyWidthSet secondRowFirstColumn directionRTL" data-offset -x="0" data-offset-y="200" data-expected-width="20" data-expected-height="200">< /div>
206 <div class="onlyHeightSet secondRowSecondColumn directionRTL" data-offs et-x="100" data-offset-y="200" data-expected-width="100" data-expected-height="4 0"></div> 206 <div class="onlyHeightSet secondRowSecondColumn directionRTL" data-offs et-x="100" data-offset-y="200" data-expected-width="100" data-expected-height="4 0"></div>
207 </div> 207 </div>
208 </div> 208 </div>
209 209
210 <!-- Vertical RL writing mode. --> 210 <!-- Vertical RL writing mode. -->
211 <div style="position: relative"> 211 <div style="position: relative">
212 <div class="grid verticalRL alignItemsStretch justifyItemsStretch" data-expe cted-width="400" data-expected-height="200"> 212 <div class="grid fit-content verticalRL alignItemsStretch justifyItemsStretc h" data-expected-width="400" data-expected-height="200">
213 <div class="firstRowFirstColumn" data-offset-x="200" data-offset-y="0" d ata-expected-width="200" data-expected-height="100"></div> 213 <div class="firstRowFirstColumn" data-offset-x="200" data-offset-y="0" d ata-expected-width="200" data-expected-height="100"></div>
214 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="380" data-offset-y="100" data-expected-width="20" data-expected-height="40"></div> 214 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="380" data-offset-y="100" data-expected-width="20" data-expected-height="40"></div>
215 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="180" data- offset-y="0" data-expected-width="20" data-expected-height="100"></div> 215 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="180" data- offset-y="0" data-expected-width="20" data-expected-height="100"></div>
216 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="0" data- offset-y="100" data-expected-width="200" data-expected-height="40"></div> 216 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="0" data- offset-y="100" data-expected-width="200" data-expected-height="40"></div>
217 </div> 217 </div>
218 </div> 218 </div>
219 219
220 <div style="position: relative"> 220 <div style="position: relative">
221 <div class="grid verticalRL" data-expected-width="400" data-expected-height= "200"> 221 <div class="grid fit-content verticalRL" data-expected-width="400" data-expe cted-height="200">
222 <div class="firstRowFirstColumn" data-offset-x="200" data-offset-y="0" d ata-expected-width="200" data-expected-height="100"></div> 222 <div class="firstRowFirstColumn" data-offset-x="200" data-offset-y="0" d ata-expected-width="200" data-expected-height="100"></div>
223 <div class="firstRowSecondColumn" data-offset-x="200" data-offset-y="100 " data-expected-width="200" data-expected-height="100"></div> 223 <div class="firstRowSecondColumn" data-offset-x="200" data-offset-y="100 " data-expected-width="200" data-expected-height="100"></div>
224 <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="0" da ta-expected-width="200" data-expected-height="100"></div> 224 <div class="secondRowFirstColumn" data-offset-x="0" data-offset-y="0" da ta-expected-width="200" data-expected-height="100"></div>
225 <div class="secondRowSecondColumn" data-offset-x="0" data-offset-y="100" data-expected-width="200" data-expected-height="100"></div> 225 <div class="secondRowSecondColumn" data-offset-x="0" data-offset-y="100" data-expected-width="200" data-expected-height="100"></div>
226 </div> 226 </div>
227 </div> 227 </div>
228 228
229 <!-- Vertical LR writing mode. --> 229 <!-- Vertical LR writing mode. -->
230 <div style="position: relative"> 230 <div style="position: relative">
231 <div class="grid verticalLR alignItemsStretch justifyItemsStretch" data-expe cted-width="400" data-expected-height="200"> 231 <div class="grid fit-content verticalLR alignItemsStretch justifyItemsStretc h" data-expected-width="400" data-expected-height="200">
232 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="200" data-expected-height="100"></div> 232 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="200" data-expected-height="100"></div>
233 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="0" da ta-offset-y="100" data-expected-width="20" data-expected-height="40"></div> 233 <div class="widthAndHeightSet firstRowSecondColumn" data-offset-x="0" da ta-offset-y="100" data-expected-width="20" data-expected-height="40"></div>
234 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="200" data- offset-y="0" data-expected-width="20" data-expected-height="100"></div> 234 <div class="onlyWidthSet secondRowFirstColumn" data-offset-x="200" data- offset-y="0" data-expected-width="20" data-expected-height="100"></div>
235 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="200" dat a-offset-y="100" data-expected-width="200" data-expected-height="40"></div> 235 <div class="onlyHeightSet secondRowSecondColumn" data-offset-x="200" dat a-offset-y="100" data-expected-width="200" data-expected-height="40"></div>
236 </div> 236 </div>
237 </div> 237 </div>
238 238
239 <div style="position: relative"> 239 <div style="position: relative">
240 <div class="grid verticalLR" data-expected-width="400" data-expected-height= "200"> 240 <div class="grid fit-content verticalLR" data-expected-width="400" data-expe cted-height="200">
241 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="200" data-expected-height="100"></div> 241 <div class="firstRowFirstColumn" data-offset-x="0" data-offset-y="0" dat a-expected-width="200" data-expected-height="100"></div>
242 <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="100" data-expected-width="200" data-expected-height="100"></div> 242 <div class="firstRowSecondColumn" data-offset-x="0" data-offset-y="100" data-expected-width="200" data-expected-height="100"></div>
243 <div class="secondRowFirstColumn" data-offset-x="200" data-offset-y="0" data-expected-width="200" data-expected-height="100"></div> 243 <div class="secondRowFirstColumn" data-offset-x="200" data-offset-y="0" data-expected-width="200" data-expected-height="100"></div>
244 <div class="secondRowSecondColumn" data-offset-x="200" data-offset-y="10 0" data-expected-width="200" data-expected-height="100"></div> 244 <div class="secondRowSecondColumn" data-offset-x="200" data-offset-y="10 0" data-expected-width="200" data-expected-height="100"></div>
245 </div> 245 </div>
246 </div> 246 </div>
247 247
248 </body> 248 </body>
249 </html> 249 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698