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

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/table/bugs/bug7714.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
<html>
 
2
<BODY>
 
3
 
 
4
<p>The table below should have two columns and a total of 7 cells,
 
5
arranged in an alternating/overlapping fashion. The cellspacing=0 for
 
6
this table. In Nav4.5, this example can be viewed. In 5.0 (jun08
 
7
win95), this example displays (apparently) as a simple 2x2 table
 
8
(i.e., some elements are not displayed at all). (The numbers are the
 
9
position of each TD in the HTML source).</p>
 
10
 
 
11
<table border="1" cellspacing="0" cellpadding="0">
 
12
<tr>
 
13
    <td rowspan="2" height="40">1</td>
 
14
    <td height="20">2</td>
 
15
  </tr>
 
16
<tr>
 
17
    <td rowspan="2" height="40">3</td>
 
18
  </tr>
 
19
<tr>
 
20
    <td rowspan="2" height="40">4</td>
 
21
  </tr>
 
22
<tr>
 
23
    <td rowspan="2" height="40">5</td>
 
24
  </tr>
 
25
<tr>
 
26
    <td rowspan="2" height="40">6</td>
 
27
  </tr>
 
28
<tr>
 
29
    <td height="20">7</td>
 
30
  </tr>
 
31
</table>
 
32
 
 
33
<p>This is the same table as above, but cellspacing=5 in this case. For 5.0,
 
34
(jun08 win95) notice the odd cellspacing overlaps. See also bug #6304.</p>
 
35
 
 
36
<table border="1" cellspacing="5" cellpadding="0">
 
37
<tr>
 
38
    <td rowspan="2" height="40">1</td>
 
39
    <td height="20">2</td>
 
40
  </tr>
 
41
<tr>
 
42
    <td rowspan="2" height="40">3</td>
 
43
  </tr>
 
44
<tr>
 
45
    <td rowspan="2" height="40">4</td>
 
46
  </tr>
 
47
<tr>
 
48
    <td rowspan="2" height="40">5</td>
 
49
  </tr>
 
50
<tr>
 
51
    <td rowspan="2" height="40">6</td>
 
52
  </tr>
 
53
<tr>
 
54
    <td height="20">7</td>
 
55
  </tr>
 
56
</table>
 
57
 
 
58
 
 
59
</body>
 
60
</html>