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

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

Issue 19390002: Spanning logical height is not added properly in all spanning rows. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@RowSpan_B254914_6
Patch Set: Created 7 years, 4 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 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
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="0">
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="19"> 365 <tr data-expected-height="37">
366 <td>row7 col1</td> 366 <td>row7 col1</td>
367 </tr> 367 </tr>
368 <tr data-expected-height="19"> 368 <tr data-expected-height="38">
369 <td>row8 col1</td> 369 <td>row8 col1</td>
370 </tr> 370 </tr>
371 <tr data-expected-height="19"> 371 <tr data-expected-height="49">
372 <td>row9 col1</td> 372 <td>row9 col1</td>
373 </tr> 373 </tr>
374 <tr data-expected-height="19"> 374 <tr data-expected-height="49">
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