1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/table-dom/deleteCellsExpandZeroColspan.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,20 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 +<body> 1.7 +<table bgcolor="orange" border="1"> 1.8 +<tr> 1.9 + <td>c11</td><td>c12</td><td>c13</td><td>c14</td> 1.10 +</tr> 1.11 + <tr> 1.12 + <td id="c21">c21</td><td colspan="0">X1</td> 1.13 + </tr> 1.14 +</table> 1.15 + 1.16 +<script> 1.17 +document.body.offsetWidth; 1.18 +c21 = document.getElementById("c21"); 1.19 +c21.parentNode.removeChild(c21); 1.20 +</script> 1.21 + 1.22 +</body> 1.23 +</html>