Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / tables / mozilla / marvin / tables_td_width.html
blob2e370d74b7b4137f71af55dc566f63d488032987
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" >
2 <html>
3 <head>
4 <!-- testcase: tables_td_width.html
5 description: HTML Text Markup Element, TABLE/TD/WIDTH -->
6 <!-- Author: Chris Petersen Date: 8/7/98 -->
8 <!-- ***** BEGIN LICENSE BLOCK *****
9 - Version: MPL 1.1/GPL 2.0/LGPL 2.1
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/
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.
21 - The Original Code is table layout tests.
23 - The Initial Developer of the Original Code is
24 - Netscape Communications Corp.
25 - Portions created by the Initial Developer are Copyright (C) 1998
26 - the Initial Developer. All Rights Reserved.
28 - Contributor(s):
30 - Alternatively, the contents of this file may be used under the terms of
31 - either the GNU General Public License Version 2 or later (the "GPL"), or
32 - the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
33 - in which case the provisions of the GPL or the LGPL are applicable instead
34 - of those above. If you wish to allow use of your version of this file only
35 - under the terms of either the GPL or the LGPL, and not to allow others to
36 - use your version of this file under the terms of the MPL, indicate your
37 - decision by deleting the provisions above and replace them with the notice
38 - and other provisions required by the LGPL or the GPL. If you do not delete
39 - the provisions above, a recipient may use your version of this file under
40 - the terms of any one of the MPL, the GPL or the LGPL.
42 - ***** END LICENSE BLOCK ***** -->
43 <!-- Purpose: To test width attribute in a TD tag -->
44 <!-- Expected Result: The TD width is set to 500 pixels and 200 pixels -->
45 <title>Web Browser Web View (HTML): Document TABLE/TD/WIDTH</title>
46 </head>
47 <body>
48 The TD tag uses the WIDTH attribute. The first table's TD width is set to 500 pixels.<br>
49 <table BORDER=1>
50 <tr>
51 <td width=600>Netscape Communicator Version 4.0.6</td>
52 </tr>
53 <tr>
54 <td>Platforms</td>
55 </tr>
56 </table>
57 <br>
58 This second table's TD width is set to 200 pixels.<br>
59 <table BORDER=1>
60 <tr>
61 <td width=200>Netscape Communicator Version 4.0.6</td>
62 </tr>
63 <tr>
64 <td>Platforms</td>
65 </tr>
66 </table>
67 </body>
68 </html>