gecko-dev/layout/html/tests/table/marvin/tfoot_align_left.html

39 строки
1.3 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<html>
<head>
<!-- testcase: tfoot_align_left.html -->
<!-- description: HTML 4.0 TFOOT element/ALIGN-LEFT attribute -->
<!-- Author: Christine Dreckman Date: 1/13/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 ALIGN-LEFT attribute of the TFOOT element. -->
<!-- Expected result: The text in the TFOOT section should be left aligned -->
<title>tfoot_align_left</title>
</head>
<body>
<p>The TFOOT element labels the head area of a table. In this test, the TFOOT text should be left aligned.</p>
<table border>
<thead>
<tr>
<td>This text is in the THEADThis text is in the THEAD</td>
<td>This text is in the THEADThis text is in the THEAD</td>
</tr>
</thead>
<tfoot align="left">
<tr>
<td>This text is in the TFOOT</td>
<td>This text is in the TFOOT</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>This text is in the TBODYThis text is in the TBODY</td>
<td>This text is in the TBODYThis text is in the TBODY</td>
</tr>
<tbody>
</table>
</body>
</html>