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

Side by Side Diff: third_party/WebKit/LayoutTests/html/tabular_data/td_colspan_rendering.html

Issue 2785963002: Move tests for table elements to LayoutTests/html/tabular_data/. (Closed)
Patch Set: Created 3 years, 8 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 <html> 1 <html>
2 <head> 2 <head>
3 <title>colSpan test</title> 3 <title>colSpan test</title>
4 4
5 <script type="text/javascript"> 5 <script type="text/javascript">
6 6
7 function colSpanOne() { 7 function colSpanOne() {
8 var x=document.getElementById('myTable1').rows[0].cells 8 var x=document.getElementById('myTable1').rows[0].cells
9 x[0].colSpan="" 9 x[0].colSpan=""
10 x[1].colSpan="7" 10 x[1].colSpan="7"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 <td>F</td> 68 <td>F</td>
69 <td>G</td> 69 <td>G</td>
70 <td>H</td> 70 <td>H</td>
71 </tr> 71 </tr>
72 </table> 72 </table>
73 73
74 </body> 74 </body>
75 75
76 </html> 76 </html>
77 77
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698