Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / marvin / tables_cellpadding.html
blob30f9b62131e2eeb60098028d0928c3c0b028fbf7
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" >
3 <html>
5 <head>
7 <!-- test case: tables_cellpadding.html
9 description: HTML Text Markup Element, TABLE CELLPADDING -->
11 <!-- Author: Chris Petersen Date: 8/6/98 -->
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) 1998
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 TABLE tag.-->
52 <!-- Expected result: A table should be displayed in the window -->
54 <title>Web Browser Web View (HTML): Document TABLE CELLPADDING</title>
56 </head>
58 <body>
60 CELLPADDING controls the padding in pixels between the border of each cells and the cell's
62 contents.The first table has a cellpadding of 8 pixels. The second table is not using cell
64 padding. Notice the difference. There should be a larger gap between the cell border and it's
66 contents in the first table.
68 <br>
70 <br>
72 <table cellpadding=8 border=2>
74 <tr>
76 <td>Navigator</td>
78 <td>Messenger</td>
80 <td>Collabra</td>
82 </tr>
84 <tr>
86 <td>Composer</td>
88 <td>Calendar</td>
90 <td>Netcaster</td>
92 </tr>
94 </table>
96 <br><br>
98 This table contains no cellpadding.
100 <table border=2>
102 <tr>
104 <td>Navigator</td>
106 <td>Messenger</td>
108 <td>Collabra</td>
110 </tr>
112 <tr>
114 <td>Composer</td>
116 <td>Calendar</td>
118 <td>Netcaster</td>
120 </tr>
122 </table>
126 </body>
128 </html>