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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/table-rowspan-height-distribution-in-rows-2.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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 <tr data-expected-height="24"> 351 <tr data-expected-height="24">
352 <td>row4 col1</td> 352 <td>row4 col1</td>
353 <td>row4 col2</td> 353 <td>row4 col2</td>
354 <td>row4 col3</td> 354 <td>row4 col3</td>
355 </tr> 355 </tr>
356 <tr data-expected-height="19"> 356 <tr data-expected-height="19">
357 <td>row5 col0</td> 357 <td>row5 col0</td>
358 <td>row5 col1</td> 358 <td>row5 col1</td>
359 <td>row5 col2</td> 359 <td>row5 col2</td>
360 </tr> 360 </tr>
361 <tr data-expected-height="0"> 361 <tr data-expected-height="74">
362 <td rowspan=5 style="height:200px">row6 col0</td> 362 <td rowspan=5 style="height:200px">row6 col0</td>
363 <td rowspan=5 style="height:100px">row6 col1</td> 363 <td rowspan=5 style="height:100px">row6 col1</td>
364 </tr> 364 </tr>
365 <tr data-expected-height="37"> 365 <tr data-expected-height="19">
366 <td>row7 col1</td> 366 <td>row7 col1</td>
367 </tr> 367 </tr>
368 <tr data-expected-height="38"> 368 <tr data-expected-height="19">
369 <td>row8 col1</td> 369 <td>row8 col1</td>
370 </tr> 370 </tr>
371 <tr data-expected-height="49"> 371 <tr data-expected-height="19">
372 <td>row9 col1</td> 372 <td>row9 col1</td>
373 </tr> 373 </tr>
374 <tr data-expected-height="49"> 374 <tr data-expected-height="19">
375 <td>row10 col1</td> 375 <td>row10 col1</td>
376 </tr> 376 </tr>
377 </table> 377 </table>
378 </body> 378 </body>
379 </html> 379 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698