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

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/table/dom/deleteRowsShrink1.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
  deleteRowAt(0, 0);
 
8
  deleteRowAt(2, 1);
 
9
}
 
10
</SCRIPT>  
 
11
</HEAD>
 
12
<BODY onload="doIt()">
 
13
The 2 tables should look the same
 
14
<table bgcolor=orange border>
 
15
 <tr>
 
16
  <td>c11</td><td>c12</td>
 
17
 </tr>
 
18
 <tr>
 
19
  <td>c21</td><td>c22</td>
 
20
 </tr>
 
21
</table>
 
22
<BR>
 
23
<table bgcolor=orange border>
 
24
 <tr>
 
25
  <td>c21</td><td>c22</td>
 
26
 </tr>
 
27
</table>
 
28
<BR>
 
29
The 2 tables should look the same
 
30
<table bgcolor=orange border>
 
31
 <tr>
 
32
  <td>c11</td><td>c12</td>
 
33
 </tr>
 
34
 <tr>
 
35
  <td>c21</td><td>c22</td>
 
36
 </tr>
 
37
</table>
 
38
<BR>
 
39
<table bgcolor=orange border>
 
40
 <tr>
 
41
  <td>c11</td><td>c12</td>
 
42
 </tr>
 
43
</table>
 
44
</BODY></HTML>
 
45
 
 
46
 
 
47
 
 
48
 
 
49
 
 
50