Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / marvin / x_table.xml
blob3764bd822026f336852bd9acdeb85c0ef3673994
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5 <meta name="generator"
6 content="HTML Tidy for Mac OS, see www.w3.org" />
7 <title>table</title>
8 <!-- ***** BEGIN LICENSE BLOCK *****
9    - Version: MPL 1.1/GPL 2.0/LGPL 2.1
10    -
11    - The contents of this file are subject to the Mozilla Public License Version
12    - 1.1 (the "License"); you may not use this file except in compliance with
13    - the License. You may obtain a copy of the License at
14    - http://www.mozilla.org/MPL/
15    -
16    - Software distributed under the License is distributed on an "AS IS" basis,
17    - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
18    - for the specific language governing rights and limitations under the
19    - License.
20    -
21    - The Original Code is Mozilla Communicator Test Cases.
22    -
23    - The Initial Developer of the Original Code is
24    - Netscape Communications Corp.
25    - Portions created by the Initial Developer are Copyright (C) 1999
26    - the Initial Developer. All Rights Reserved.
27    -
28    - Contributor(s):
29    -   Christine Dreckman  Date: 8/11/2000
30    -
31    - Alternatively, the contents of this file may be used under the terms of
32    - either of the GNU General Public License Version 2 or later (the "GPL"),
33    - or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
34    - in which case the provisions of the GPL or the LGPL are applicable instead
35    - of those above. If you wish to allow use of your version of this file only
36    - under the terms of either the GPL or the LGPL, and not to allow others to
37    - use your version of this file under the terms of the MPL, indicate your
38    - decision by deleting the provisions above and replace them with the notice
39    - and other provisions required by the GPL or the LGPL. If you do not delete
40    - the provisions above, a recipient may use your version of this file under
41    - the terms of any one of the MPL, the GPL or the LGPL.
42    -
43    - ***** END LICENSE BLOCK ***** -->
44   <!-- Modified: Changed doctype to xhtml 1.0 transitional Author: Chris Petersen Date: 1/12/01 -->
45 </head>
46 <body>
47 <p>The table below should have the following:</p>
49 <ol>
50 <li>a caption 'TABLE'</li>
52 <li>no border</li>
54 <li>3 colgroups, each with one column</li>
56 <li>a THEAD with one row</li>
58 <li>a TBODY with two rows</li>
60 <li>a TFOOT with one row</li>
61 </ol>
63 <br />
64  <br />
67 <table>
68 <caption>TABLE</caption>
70 <colgroup>
71 <col /></colgroup>
73 <colgroup>
74 <col /></colgroup>
76 <colgroup>
77 <col /></colgroup>
79 <thead>
80 <tr>
81 <th>THEAD</th>
82 <th>THEAD</th>
83 <th>THEAD</th>
84 </tr>
85 </thead>
87 <tfoot>
88 <tr>
89 <td>TFOOT</td>
90 <td>TFOOT</td>
91 <td>TFOOT</td>
92 </tr>
93 </tfoot>
95 <tbody>
96 <tr>
97 <td>TBODY</td>
98 <td>TBODY</td>
99 <td>TBODY</td>
100 </tr>
102 <tr>
103 <td>TBODY</td>
104 <td>TBODY</td>
105 <td>TBODY</td>
106 </tr>
107 </tbody>
108 </table>
109 </body>
110 </html>