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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/table/table-all-rowspans-height-distribution-in-rows-except-overlapped.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 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 <tr data-expected-height="24"> 402 <tr data-expected-height="24">
403 <td>row4 col1</td> 403 <td>row4 col1</td>
404 <td>row4 col2</td> 404 <td>row4 col2</td>
405 <td>row4 col3</td> 405 <td>row4 col3</td>
406 </tr> 406 </tr>
407 <tr data-expected-height="19"> 407 <tr data-expected-height="19">
408 <td>row5 col0</td> 408 <td>row5 col0</td>
409 <td>row5 col1</td> 409 <td>row5 col1</td>
410 <td>row5 col2</td> 410 <td>row5 col2</td>
411 </tr> 411 </tr>
412 <tr data-expected-height="0"> 412 <tr data-expected-height="74">
413 <td rowspan=5 style="height:200px">row6 col0</td> 413 <td rowspan=5 style="height:200px">row6 col0</td>
414 <td rowspan=5 style="height:100px">row6 col1</td> 414 <td rowspan=5 style="height:100px">row6 col1</td>
415 </tr> 415 </tr>
416 <tr data-expected-height="37"> 416 <tr data-expected-height="19">
417 <td>row7 col1</td> 417 <td>row7 col1</td>
418 </tr> 418 </tr>
419 <tr data-expected-height="38"> 419 <tr data-expected-height="19">
420 <td>row8 col1</td> 420 <td>row8 col1</td>
421 </tr> 421 </tr>
422 <tr data-expected-height="49"> 422 <tr data-expected-height="19">
423 <td>row9 col1</td> 423 <td>row9 col1</td>
424 </tr> 424 </tr>
425 <tr data-expected-height="49"> 425 <tr data-expected-height="19">
426 <td>row10 col1</td> 426 <td>row10 col1</td>
427 </tr> 427 </tr>
428 </table> 428 </table>
429 </body> 429 </body>
430 </html> 430 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698