karnaze%netscape.com 40c7757fb4 table regression tests
git-svn-id: svn://10.0.0.236/trunk@26311 18797224-902f-48f8-a5cc-f745e15eee43
1999-04-05 19:56:05 +00:00

28 lines
1.1 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<!-- test case: col_span.html -->
<!-- description: HTML 4.0 COL element with SPAN attribute -->
<!-- Author: Christine Dreckman Date: 2/19/99 -->
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
Copyright © 1999 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 SPAN attribute of the COL element tag-->
<!-- Expected result: A table with two columns should be displayed. The heading should span across the two columns -->
<title>col_span.html</title>
</head>
<body>
<p>The COL element specifies attributes for a table column. In this test case, the COL element is used in conjunction with the SPAN attribute. </p>
<table BORDER=1 >
<col span="2">
<tr>
<th>This heading should span across the two columns in this table.</th>
</tr>
<tr>
<td>This is column one.</td>
<td>This is column two.</td>
</tr>
</table>
</body>
</html>