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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/table-rowspan-height-distribution-in-rows-1.html

Issue 2534413004: Made varied number of cells in each row based on row's requirement. (Closed)
Patch Set: Reset TestExpectations file Created 3 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Table rowspan</title> 4 <title>Table rowspan</title>
5 <script src="../../resources/check-layout.js"></script> 5 <script src="../../resources/check-layout.js"></script>
6 <style> 6 <style>
7 td { font: 15px/1 Ahem } 7 td { font: 15px/1 Ahem }
8 #div-table { display: table; border-spacing: 2px } 8 #div-table { display: table; border-spacing: 2px }
9 #div-row, #span-row { display: table-row } 9 #div-row, #span-row { display: table-row }
10 #div-cell, #span-cell { display: table-cell } 10 #div-cell, #span-cell { display: table-cell }
(...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 <tr data-expected-height="24"> 226 <tr data-expected-height="24">
227 <td>row4 col1</td> 227 <td>row4 col1</td>
228 <td>row4 col2</td> 228 <td>row4 col2</td>
229 <td>row4 col3</td> 229 <td>row4 col3</td>
230 </tr> 230 </tr>
231 <tr data-expected-height="19"> 231 <tr data-expected-height="19">
232 <td>row5 col0</td> 232 <td>row5 col0</td>
233 <td>row5 col1</td> 233 <td>row5 col1</td>
234 <td>row5 col2</td> 234 <td>row5 col2</td>
235 </tr> 235 </tr>
236 <tr data-expected-height="0"> 236 <tr data-expected-height="74">
237 <td rowspan=5 style="height:200px">row6 col0</td> 237 <td rowspan=5 style="height:200px">row6 col0</td>
238 <td rowspan=5 style="height:100px">row6 col1</td> 238 <td rowspan=5 style="height:100px">row6 col1</td>
239 </tr> 239 </tr>
240 <tr data-expected-height="37"> 240 <tr data-expected-height="19">
241 <td>row7 col1</td> 241 <td>row7 col1</td>
242 </tr> 242 </tr>
243 <tr data-expected-height="38"> 243 <tr data-expected-height="19">
244 <td>row8 col1</td> 244 <td>row8 col1</td>
245 </tr> 245 </tr>
246 <tr data-expected-height="49"> 246 <tr data-expected-height="19">
247 <td>row9 col1</td> 247 <td>row9 col1</td>
248 </tr> 248 </tr>
249 <tr data-expected-height="49"> 249 <tr data-expected-height="19">
250 <td>row10 col1</td> 250 <td>row10 col1</td>
251 </tr> 251 </tr>
252 </table> 252 </table>
253 </body> 253 </body>
254 </html> 254 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698