Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / marvin / tables_caption_align_bot.html
blob8b5bdc266dbdea9e64eb3c6b966802530e502144
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
3 <html>
5 <head>
7 <!-- test case: tables_caption_align_bottom.html -->
9 <!-- description: HTML 4.0 TABLE element/CAPTION attribute -->
11 <!-- Author: Chris Petersen Date: 8/6/98 -->
13 <!-- Modified: Christine Dreckman Date: 1/19/99 -->
16 <!-- ***** BEGIN LICENSE BLOCK *****
17 - Version: MPL 1.1/GPL 2.0/LGPL 2.1
19 - The contents of this file are subject to the Mozilla Public License Version
20 - 1.1 (the "License"); you may not use this file except in compliance with
21 - the License. You may obtain a copy of the License at
22 - http://www.mozilla.org/MPL/
24 - Software distributed under the License is distributed on an "AS IS" basis,
25 - WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
26 - for the specific language governing rights and limitations under the
27 - License.
29 - The Original Code is table layout tests.
31 - The Initial Developer of the Original Code is
32 - Netscape Communications Corp.
33 - Portions created by the Initial Developer are Copyright (C) 1999
34 - the Initial Developer. All Rights Reserved.
36 - Contributor(s):
38 - Alternatively, the contents of this file may be used under the terms of
39 - either the GNU General Public License Version 2 or later (the "GPL"), or
40 - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
41 - in which case the provisions of the GPL or the LGPL are applicable instead
42 - of those above. If you wish to allow use of your version of this file only
43 - under the terms of either the GPL or the LGPL, and not to allow others to
44 - use your version of this file under the terms of the MPL, indicate your
45 - decision by deleting the provisions above and replace them with the notice
46 - and other provisions required by the LGPL or the GPL. If you do not delete
47 - the provisions above, a recipient may use your version of this file under
48 - the terms of any one of the MPL, the GPL or the LGPL.
50 - ***** END LICENSE BLOCK ***** -->
52 <!-- Purpose: To test the CAPTION attribute of the TABLE element tag-->
54 <!-- Expected result: A table should be displayed with a bottom aligned caption -->
56 <title>tables_caption_align_bottom</title>
58 </head>
60 <body>
62 <p>The caption should be at the bottom of the table</p>
64 <table border=1>
66 <caption align=bottom>Wild Cats</caption>
68 <tr>
70 <td>Lion</td>
72 <td>Leopard</td>
74 <td>Cheetah</td>
76 </tr>
78 <tr>
80 <td>Jaguar</td>
82 <td>Bobcat</td>
84 <td>Ocelot</td>
86 </tr>
88 </table>
90 </body>
92 </html>