Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / bugs / bug29429.html
blobb040b853482418328c650b7744b7931b9438f3cc
1 <body onload="doIt()">
2 <SCRIPT>
3 function doIt() {
4 var row = document.getElementById("foo");
5 row.deleteCell(0);
6 var cell = document.createElement("TD", null);
7 var text = document.createTextNode("yyy yyy yyy yyy yyy yyy yyy yyy yyy yyy yyy yyy yyy yyy yyy yyy yyy yyy yyy yyy yyy ");
8 cell.appendChild(text);
9 row.appendChild(cell);
11 </SCRIPT>
12 <TABLE BORDER=1>
13 <TR>
14 <TD>
15 <TABLE BORDER=1 WIDTH="100%">
16 <TR ID="foo">
17 <TD>
18 text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text
19 </TD>
20 </TR>
21 </TABLE>
22 </TD>
23 <TD>
24 text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text
25 </TD>
26 </TR>
27 </TABLE>