| OLD | NEW |
| 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 <td>row5 col1</td> | 83 <td>row5 col1</td> |
| 84 </tr> | 84 </tr> |
| 85 </tbody> | 85 </tbody> |
| 86 </table> | 86 </table> |
| 87 <h5>Test 4 - One rowSpan cell and specified cells height</h5> | 87 <h5>Test 4 - One rowSpan cell and specified cells height</h5> |
| 88 <table border="1"> | 88 <table border="1"> |
| 89 <tbody> | 89 <tbody> |
| 90 <tr> | 90 <tr> |
| 91 <td>row0 col0</td> | 91 <td>row0 col0</td> |
| 92 </tr> | 92 </tr> |
| 93 <tr data-expected-height="33"> | 93 <tr data-expected-height="59"> |
| 94 <td>row1 col0</td> | 94 <td>row1 col0</td> |
| 95 <td rowspan="4" style="height:300px">row1 col1 - rowspan=4</td> | 95 <td rowspan="4" style="height:300px">row1 col1 - rowspan=4</td> |
| 96 </tr> | 96 </tr> |
| 97 <tr data-expected-height="130"> | 97 <tr data-expected-height="74"> |
| 98 <td style="height:70px">row2 col0</td> | 98 <td style="height:70px">row2 col0</td> |
| 99 </tr> | 99 </tr> |
| 100 <tr data-expected-height="43"> | 100 <tr data-expected-height="34"> |
| 101 <td style="height:30px">row3 col0</td> | 101 <td style="height:30px">row3 col0</td> |
| 102 </tr> | 102 </tr> |
| 103 <tr data-expected-height="136"> | 103 <tr data-expected-height="104"> |
| 104 <td style="height:100px">row4 col0</td> | 104 <td style="height:100px">row4 col0</td> |
| 105 </tr> | 105 </tr> |
| 106 <tr data-expected-height="54"> | 106 <tr data-expected-height="54"> |
| 107 <td style="height:50px">row5 col0</td> | 107 <td style="height:50px">row5 col0</td> |
| 108 <td>row5 col1</td> | 108 <td>row5 col1</td> |
| 109 </tr> | 109 </tr> |
| 110 </tbody> | 110 </tbody> |
| 111 </table> | 111 </table> |
| 112 <h5>Test 5 - RowSpan and ColSpan. </h5> | 112 <h5>Test 5 - RowSpan and ColSpan. </h5> |
| 113 <table border="1" width="607"> | 113 <table border="1" width="607"> |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 </tr> | 245 </tr> |
| 246 <tr data-expected-height="19"> | 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="19"> | 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> |
| OLD | NEW |