Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / marvin / thead_align_char.html
blob826df8cd59df7afbef7a76c7ae1ffd1f599c825c
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
3 <html>
5 <head>
7 <!-- testcase: thead_align_char.html -->
9 <!-- description: HTML 4.0 THEAD element/ALIGN-char attribute/value -->
11 <!-- Author: Christine Dreckman Date: 1/27/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-char attribute/value of the THEAD element. -->
52 <!-- Expected result: The numbers in the THEAD section should align on the decimal point -->
54 <title>thead_align_char</title>
56 </head>
60 <body>
62 <p>In this test, the THEAD section of the table contains numbers with decimals. The test uses the attribute/value ALIGN=char without the additional CHAR attribute to specify a particular character. Therefore, ALIGN=char should cause the numbers to align to the default value (decimal point).</p>
66 <table border>
68 <thead align="char">
70 <tr>
72 <td>55.00</td>
74 <td>55555.00</td>
76 <td>555.00</td>
78 </tr>
80 <tr>
82 <td>1234.56</td>
84 <td>123.45</td>
86 <td>12345.67</td>
88 </tr>
90 </thead>
92 <tfoot>
94 <tr>
96 <td>This text is in the TFOOT</td>
98 <td>This text is in the TFOOT</td>
100 <td>This text is in the TFOOT</td>
102 </tr>
104 </tfoot>
106 <tbody >
108 <tr>
110 <td>This text is in the TBODY</td>
112 <td>This text is in the TBODY</td>
114 <td>This text is in the TBODY</td>
116 </tr>
118 <tbody>
120 </table>
124 </body>
126 </html>