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