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

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

Issue 2564123002: Run spellchecker on fast/table tests. (Closed)
Patch Set: rebaseline-cl Created 4 years 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 <td>row4 col2</td> 61 <td>row4 col2</td>
62 </tr> 62 </tr>
63 <tr data-expected-height="25"> 63 <tr data-expected-height="25">
64 <td>row5 col1</td> 64 <td>row5 col1</td>
65 </tr> 65 </tr>
66 <tr data-expected-height="19"> 66 <tr data-expected-height="19">
67 <td>row6 col0</td> 67 <td>row6 col0</td>
68 </tr> 68 </tr>
69 </tbody> 69 </tbody>
70 </table> 70 </table>
71 <h5>Test 3 - 2 same row spanning cells with diffrent heights.</h5> 71 <h5>Test 3 - 2 same row spanning cells with different heights.</h5>
72 <table border="1"> 72 <table border="1">
73 <tbody> 73 <tbody>
74 <tr data-expected-height="0"> 74 <tr data-expected-height="0">
75 <td rowspan="6" style="height:300px">row0 col0 rowspan=6 height=300px</td> 75 <td rowspan="6" style="height:300px">row0 col0 rowspan=6 height=300px</td>
76 <td rowspan="6" style="height:500px">row0 col1 rowspan=6 height=500px</td> 76 <td rowspan="6" style="height:500px">row0 col1 rowspan=6 height=500px</td>
77 </tr> 77 </tr>
78 <tr data-expected-height="90"> 78 <tr data-expected-height="90">
79 <td>row1 col1</td> 79 <td>row1 col1</td>
80 </tr> 80 </tr>
81 <tr data-expected-height="94"> 81 <tr data-expected-height="94">
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 <td>row5 col2</td> 118 <td>row5 col2</td>
119 </tr> 119 </tr>
120 <tr data-expected-height="42"> 120 <tr data-expected-height="42">
121 <td>row6 col2</td> 121 <td>row6 col2</td>
122 </tr> 122 </tr>
123 <tr data-expected-height="19"> 123 <tr data-expected-height="19">
124 <td>row7 col0</td> 124 <td>row7 col0</td>
125 </tr> 125 </tr>
126 </tbody> 126 </tbody>
127 </table> 127 </table>
128 <h5>Test 5 - 2 spanning cells starts at diffrent row index but end at same row i ndex.</h5> 128 <h5>Test 5 - 2 spanning cells starts at different row index but end at same row index.</h5>
129 <table border="1"> 129 <table border="1">
130 <tbody> 130 <tbody>
131 <tr data-expected-height="35"> 131 <tr data-expected-height="35">
132 <td rowspan="6" style="height:600px">row0 col0 rowspan=6 height=400px</t d> 132 <td rowspan="6" style="height:600px">row0 col0 rowspan=6 height=400px</t d>
133 <td>row0 col1</td> 133 <td>row0 col1</td>
134 </tr> 134 </tr>
135 <tr data-expected-height="0"> 135 <tr data-expected-height="0">
136 <td rowspan="5" style="height:300px">row1 col1 rowspan=6 height=800px</t d> 136 <td rowspan="5" style="height:300px">row1 col1 rowspan=6 height=800px</t d>
137 </tr> 137 </tr>
138 <tr data-expected-height="130"> 138 <tr data-expected-height="130">
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 </tr> 291 </tr>
292 <tr data-expected-height="49"> 292 <tr data-expected-height="49">
293 <td>row9 col1</td> 293 <td>row9 col1</td>
294 </tr> 294 </tr>
295 <tr data-expected-height="49"> 295 <tr data-expected-height="49">
296 <td>row10 col1</td> 296 <td>row10 col1</td>
297 </tr> 297 </tr>
298 </table> 298 </table>
299 </body> 299 </body>
300 </html> 300 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698