~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/table/dom/deleteCellsRebuild1.html

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<HEAD>
 
2
<SCRIPT src=tableDom.js>
 
3
</SCRIPT>
 
4
<SCRIPT>
 
5
 
 
6
function doIt() {
 
7
  deleteCellAt(0, 0);
 
8
}
 
9
</SCRIPT>  
 
10
</HEAD>
 
11
<BODY onload="doIt()">
 
12
The 2 tables should look the same
 
13
<table bgcolor=orange border>
 
14
 <tr>
 
15
  <td>c11</td><td rowspan=2>c12</td><td>c13</td>
 
16
 </tr>
 
17
 <tr>
 
18
  <td>c12</td><td>c22</td><td>c23</td>
 
19
 </tr>
 
20
</table>
 
21
<BR>
 
22
<table bgcolor=orange border>
 
23
 <tr>
 
24
  <td rowspan=2>c12</td><td>c13</td>
 
25
 </tr>
 
26
 <tr>
 
27
  <td>c12</td><td>c22</td><td>c23</td>
 
28
 </tr>
 
29
</table>
 
30
 
 
31
</BODY></HTML>
 
32
 
 
33
 
 
34
 
 
35
 
 
36
 
 
37