41 lines
1.1 KiB
HTML
41 lines
1.1 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" >
|
|
<html>
|
|
<head>
|
|
<!-- testcase: tables_td_width.html
|
|
description: HTML Text Markup Element, TABLE/TD/WIDTH -->
|
|
<!-- Author: Chris Petersen Date: 8/7/98 -->
|
|
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
|
Copyright © 1998 Netscape Communications Corporation. All Rights Reserved. Use of this Test Script is
|
|
subject to the terms of the applicable license agreement from Netscape Communications Corporation. -->
|
|
<!-- Purpose: To test width attribute in a TD tag -->
|
|
<!-- Expected Result: The TD width is set to 500 pixels and 200 pixels -->
|
|
<title>Web Browser Web View (HTML): Document TABLE/TD/WIDTH</title>
|
|
</head>
|
|
<body>
|
|
The TD tag uses the WIDTH attribute. The first table's TD width is set to 500 pixels.<br>
|
|
<table BORDER=1>
|
|
<tr>
|
|
<td width=600>Netscape Communicator Version 4.0.6</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Platforms</td>
|
|
</tr>
|
|
</table>
|
|
<br>
|
|
This second table's TD width is set to 200 pixels.<br>
|
|
<table BORDER=1>
|
|
<tr>
|
|
<td width=200>Netscape Communicator Version 4.0.6</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Platforms</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|