Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / marvin / colgroup_align_right.html
blob0e91a43b7d057d03956039ffa169e1dfc66436bb
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
3 <html>
5 <head>
7 <!-- test case: colgroup_align_right.html -->
9 <!-- description: HTML 4.0 COLGROUP element with ALIGN attribute. Value=right -->
11 <!-- Author: Christine Dreckman Date: 2/19/99 -->
14 <!-- ***** BEGIN LICENSE BLOCK *****
15 - Version: MPL 1.1/GPL 2.0/LGPL 2.1
17 - The contents of this file are subject to the Mozilla Public License Version
18 - 1.1 (the "License"); you may not use this file except in compliance with
19 - the License. You may obtain a copy of the License at
20 - http://www.mozilla.org/MPL/
22 - Software distributed under the License is distributed on an "AS IS" basis,
23 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
24 - for the specific language governing rights and limitations under the
25 - License.
27 - The Original Code is table layout tests.
29 - The Initial Developer of the Original Code is
30 - Netscape Communications Corp.
31 - Portions created by the Initial Developer are Copyright (C) 1999
32 - the Initial Developer. All Rights Reserved.
34 - Contributor(s):
36 - Alternatively, the contents of this file may be used under the terms of
37 - either the GNU General Public License Version 2 or later (the "GPL"), or
38 - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
39 - in which case the provisions of the GPL or the LGPL are applicable instead
40 - of those above. If you wish to allow use of your version of this file only
41 - under the terms of either the GPL or the LGPL, and not to allow others to
42 - use your version of this file under the terms of the MPL, indicate your
43 - decision by deleting the provisions above and replace them with the notice
44 - and other provisions required by the LGPL or the GPL. If you do not delete
45 - the provisions above, a recipient may use your version of this file under
46 - the terms of any one of the MPL, the GPL or the LGPL.
48 - ***** END LICENSE BLOCK ***** -->
50 <!-- Purpose: To test the ALIGN/right attribute/value of the COLGROUP element tag -->
52 <!-- Expected result: A table with two distinct column groups should be displayed. The first column group has two columns and the second column group has three columns. Text in the cells should be right-aligned -->
54 <title>colgroup_align_right.html</title>
56 </head>
58 <body>
60 <p>Colgroups are used to identify column groups. The table below has two distinct column groups; 'Airport Location' and 'Car Rental Information'. The first column group contains two columns and the second column group contains three columns.</p>
64 <p>Text in the cells should be right-aligned.</p>
66 <table BORDER >
68 <colgroup width=100 align="right">
70 <colgroup width=300 align="right">
72 <tr>
74 <th COLSPAN="2">Airport Location</th>
76 <th COLSPAN="3">Car Rental information</th>
78 </tr>
82 <tr>
84 <th>Country</th>
86 <th>City</th>
88 <th>ABC Company</th>
90 <th>EFG Company</th>
92 <th>XYZ Company</th>
94 </tr>
98 <tr>
100 <td>France</td>
102 <td>Paris</td>
104 <td>yes</td>
106 <td>yes</td>
108 <td>yes</td>
110 </tr>
114 <tr>
116 <td>Germany</td>
118 <td>Frankfurt</td>
120 <td>yes</td>
122 <td>yes</td>
124 <td>yes</td>
126 </tr>
130 <tr>
132 <td>England</td>
134 <td>London</td>
136 <td>yes</td>
138 <td>yes</td>
140 <td>yes</td>
142 </tr>
146 <tr>
148 <td>Netherlands</td>
150 <td>Amsterdam</td>
152 <td>yes</td>
154 <td>yes</td>
156 <td>yes</td>
158 </tr>
162 <tr>
164 <td>USA</td>
166 <td>New York</td>
168 <td>yes</td>
170 <td>yes</td>
172 <td>yes</td>
174 </tr>
178 </table>
180 </body>
182 </html>