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

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/table/bugs/bug7471.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
 
2
<html>
 
3
<head>
 
4
<title>Bug 7471 testcase</title>
 
5
</head>
 
6
<body>
 
7
 
 
8
<p>No col or colgroup:</p>
 
9
 
 
10
<table width="90%" border>
 
11
        <tr>
 
12
                <td>Data</td>
 
13
                <td>Data</td>
 
14
                <td>Data</td>
 
15
        </tr>
 
16
        <tr>
 
17
                <td>Data</td>
 
18
                <td>Data</td>
 
19
                <td>Data</td>
 
20
        </tr>
 
21
        <tr>
 
22
                <td>Data</td>
 
23
                <td>Data</td>
 
24
                <td>Data</td>
 
25
        </tr>
 
26
</table>
 
27
 
 
28
<p>col elements with align=center on second col:</p>
 
29
 
 
30
<table width="90%" border>
 
31
        <col>
 
32
        <col align="center">
 
33
        <col>
 
34
        <tr>
 
35
                <td>Data</td>
 
36
                <td>Data</td>
 
37
                <td>Data</td>
 
38
        </tr>
 
39
        <tr>
 
40
                <td>Data</td>
 
41
                <td>Data</td>
 
42
                <td>Data</td>
 
43
        </tr>
 
44
        <tr>
 
45
                <td>Data</td>
 
46
                <td>Data</td>
 
47
                <td>Data</td>
 
48
        </tr>
 
49
</table>
 
50
 
 
51
<p>colgroup and col elements, with align on colgroup so 2nd and 3rd columns centered:</p>
 
52
 
 
53
<table width="90%" border>
 
54
        <colgroup>
 
55
                <col>
 
56
        </colgroup>
 
57
        <colgroup align="center">
 
58
                <col>
 
59
                <col>
 
60
        </colgroup>
 
61
        <tr>
 
62
                <td>Data</td>
 
63
                <td>Data</td>
 
64
                <td>Data</td>
 
65
        </tr>
 
66
        <tr>
 
67
                <td>Data</td>
 
68
                <td>Data</td>
 
69
                <td>Data</td>
 
70
        </tr>
 
71
        <tr>
 
72
                <td>Data</td>
 
73
                <td>Data</td>
 
74
                <td>Data</td>
 
75
        </tr>
 
76
</table>
 
77
 
 
78
<p>colgroup and col elements, with align on col so 2nd column centered:</p>
 
79
 
 
80
<table width="90%" border>
 
81
        <colgroup>
 
82
                <col>
 
83
        </colgroup>
 
84
        <colgroup>
 
85
                <col align="center">
 
86
                <col>
 
87
        </colgroup>
 
88
        <tr>
 
89
                <td>Data</td>
 
90
                <td>Data</td>
 
91
                <td>Data</td>
 
92
        </tr>
 
93
        <tr>
 
94
                <td>Data</td>
 
95
                <td>Data</td>
 
96
                <td>Data</td>
 
97
        </tr>
 
98
        <tr>
 
99
                <td>Data</td>
 
100
                <td>Data</td>
 
101
                <td>Data</td>
 
102
        </tr>
 
103
</table>
 
104
 
 
105
 
 
106
</body></html>