75 lines
1.8 KiB
HTML
75 lines
1.8 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<!-- test case: colgroup_span.html -->
|
|
<!-- description: HTML 4.0 COLGROUP 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 COLGROUP element tag-->
|
|
<!-- Expected result: A table with two distinct column groups should be displayed. The first column group has two columns and the second column group has three columns -->
|
|
<title>colgroup_span.html</title>
|
|
</head>
|
|
<body>
|
|
<p>Colgroups are used to identify column groups. In this test case, the COLGROUP element is used in conjunction with the SPAN attribute. The table below has two distinct column groups; 'Airport Location' and 'Car Rental Information'.</p>
|
|
<table BORDER >
|
|
<colgroup span=2>
|
|
<colgroup span=3>
|
|
<tr>
|
|
<th COLSPAN="2">Airport Location</th>
|
|
<th COLSPAN="3">Car Rental information</th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<th>Country</th>
|
|
<th>City</th>
|
|
<th>ABC Company</th>
|
|
<th>EFG Company</th>
|
|
<th>XYZ Company</th>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>France</td>
|
|
<td>Paris</td>
|
|
<td>yes</td>
|
|
<td>yes</td>
|
|
<td>yes</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Germany</td>
|
|
<td>Frankfurt</td>
|
|
<td>yes</td>
|
|
<td>yes</td>
|
|
<td>yes</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>England</td>
|
|
<td>London</td>
|
|
<td>yes</td>
|
|
<td>yes</td>
|
|
<td>yes</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>Netherlands</td>
|
|
<td>Amsterdam</td>
|
|
<td>yes</td>
|
|
<td>yes</td>
|
|
<td>yes</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td>USA</td>
|
|
<td>New York</td>
|
|
<td>yes</td>
|
|
<td>yes</td>
|
|
<td>yes</td>
|
|
</tr>
|
|
|
|
</table>
|
|
</body>
|
|
</html>
|