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

« back to all changes in this revision

Viewing changes to mozilla/layout/html/tests/table/core/one_row.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
Table auto, no cells fixed
 
2
<table border>
 
3
 <tr>
 
4
  <td>fooooooooooooooooooooooooooooo</td>
 
5
  <td>barrrrrrrrr</td>
 
6
  <td>zap</td>
 
7
 </tr>
 
8
</table>
 
9
<BR>
 
10
 
 
11
Table fixed, no cells fixed
 
12
<table width=500 border>
 
13
 <tr>
 
14
  <td>fooooooooooooooooooooooooooooo</td>
 
15
  <td>barrrrrrrrr</td>
 
16
  <td>zap</td>
 
17
 </tr>
 
18
</table>
 
19
<BR>
 
20
 
 
21
Table fixed, no cells fixed
 
22
<table width=200 border>
 
23
 <tr>
 
24
  <td>fo oo oo oo oo oo oo oo oo oo oo oo oo oo oo</td>
 
25
  <td>barr rrrr rrrr</td>
 
26
  <td>zap</td>
 
27
 </tr>
 
28
</table>
 
29
<BR>
 
30
 
 
31
Table auto, 1st cell fixed
 
32
<table border>
 
33
 <tr>
 
34
  <td width=100>fooooo</td>
 
35
  <td>bar</td>
 
36
 </tr>
 
37
</table>
 
38
<BR>
 
39
 
 
40
Table fixed, 1st cell fixed
 
41
<table width=500 border>
 
42
 <tr>
 
43
  <td width=100>fooooo</td>
 
44
  <td>bar</td>
 
45
 </tr>
 
46
</table>
 
47
<BR>
 
48
 
 
49
Table auto, 1st cell fixed too small
 
50
<table border>
 
51
 <tr>
 
52
  <td width=100>fooooooooooooooooooooooooooooo</td>
 
53
  <td>bar</td>
 
54
 </tr>
 
55
</table>
 
56
<BR>
 
57
 
 
58
Table fixed, 1st cell fixed too small
 
59
<table width=500 border>
 
60
 <tr>
 
61
  <td width=100>fooooooooooooooooooooooooooooo</td>
 
62
  <td>bar</td>
 
63
 </tr>
 
64
</table>
 
65
<BR>
 
66
 
 
67
Table auto, both cells fixed
 
68
<table border>
 
69
 <tr>
 
70
  <td width=100>foooo</td>
 
71
  <td width=100>bar</td>
 
72
 </tr>
 
73
</table>
 
74
<BR>
 
75
 
 
76
Table fixed, both cells fixed
 
77
<table width=500 border>
 
78
 <tr>
 
79
  <td width=100>foooo</td>
 
80
  <td width=100>bar</td>
 
81
 </tr>
 
82
</table>
 
83
<BR>
 
84
 
 
85
Table auto, both cells fixed, 1st one too small
 
86
<table border>
 
87
 <tr>
 
88
  <td width=100>fooooooooooooooooooooooooooooo</td>
 
89
  <td width=100>bar</td>
 
90
 </tr>
 
91
</table>
 
92
<BR>
 
93
 
 
94
Table fixed, both cells fixed, 1st cell fixed too small
 
95
<table width=500 border>
 
96
 <tr>
 
97
  <td width=100>fooooooooooooooooooooooooooooo</td>
 
98
  <td width=100>bar</td>
 
99
 </tr>
 
100
</table>
 
101
<BR>
 
102