Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / dom / deleteTbodyRebuild1.html
bloba04514734b30da8db99720aee7348d7df5943042
1 <HEAD>
2 <SCRIPT src=tableDom.js>
3 </SCRIPT>
4 <SCRIPT>
6 function doIt() {
7 deleteTbodyAt(0, 0);
9 </SCRIPT>
10 </HEAD>
11 <BODY onload="doIt()">
12 It should never be the case that deleting a tbody causes a rebuild
13 of the cell map since cells cannot span out of tbodies. However, this is a bug.
14 <BR><BR>
15 The 2 tables should look the same
16 <table bgcolor=orange border>
17 <tbody>
18 <tr>
19 <td>c11</td><td>c12</td>
20 </tr>
21 <tr>
22 <td rowspan=2>c21</td><td>c22</td>
23 </tr>
24 </tbody>
25 <tbody>
26 <tr>
27 <td>c31</td><td>c32</td>
28 </tr>
29 <tr>
30 <td>c41</td><td>c42</td>
31 </tr>
32 </tbody>
33 </table>
34 <BR>
35 <table bgcolor=orange border>
36 <tbody>
37 <tr>
38 <td>c31</td><td>c32</td>
39 </tr>
40 <tr>
41 <td>c41</td><td>c42</td>
42 </tr>
43 </tbody>
44 </table>
45 <BR>
47 </BODY></HTML>