50 lines
1.0 KiB
HTML
50 lines
1.0 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
|
<html>
|
|
<head><!-- testcase: body_col.html
|
|
description: HTML Text Markup Element- COL -->
|
|
<!-- Author: Chris Petersen Date: 11/2/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 the COL Element. The COL element specifies the characteristics of the a table's column such as width -->
|
|
<!-- Expected result: The first column has a width property of 40 pixels ; the second column has width of 100 pixels. -->
|
|
<title>Web Browser Web View (HTML): Document COL</title>
|
|
</head>
|
|
<body>
|
|
<TABLE BORDER=2>
|
|
<COLGROUP>
|
|
<COL WIDTH="40">
|
|
<COL WIDTH="100">
|
|
</COLGROUP>
|
|
<TR>
|
|
<TH>
|
|
La Mesa
|
|
</TH>
|
|
<TD>X
|
|
</TD>
|
|
</TR>
|
|
<TR>
|
|
<TH>
|
|
El Cajon
|
|
</TH>
|
|
<TD>
|
|
X
|
|
</TD>
|
|
</TR>
|
|
<TR>
|
|
<TH>
|
|
Chula Vista
|
|
</TH>
|
|
<TD>
|
|
X
|
|
</TD>
|
|
<TR>
|
|
<TH>
|
|
Bonita
|
|
</TH>
|
|
<TD>
|
|
N/A
|
|
</TD>
|
|
</TABLE>
|
|
</html>
|