1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/table-dom/insertCellsExpand1.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,29 @@ 1.4 +<HEAD> 1.5 +<SCRIPT src=tableDom.js> 1.6 +</SCRIPT> 1.7 +<SCRIPT> 1.8 + 1.9 +function doIt() { 1.10 + insertCellAt(0, 1, 1, 1); 1.11 + insertCellAt(0, 1, 1, 1); 1.12 + insertCellAt(1, 1, 1, 1); 1.13 + insertCellAt(1, 1, 1, 1); 1.14 +} 1.15 +</SCRIPT> 1.16 +</HEAD> 1.17 +<BODY onload="doIt()"> 1.18 +<table bgcolor=orange border> 1.19 + <tr> 1.20 + <td>c11</td><td>c12</td> 1.21 + </tr> 1.22 + <tr> 1.23 + <td>c21</td><td>c22</td> 1.24 + </tr> 1.25 +</table> 1.26 +</BODY></HTML> 1.27 + 1.28 + 1.29 + 1.30 + 1.31 + 1.32 +