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

39 строки
1.3 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<html>
<head>
<!-- testcase: tbody_align_left.html -->
<!-- description: HTML 4.0 TBODY 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 TBODY element. -->
<!-- Expected result: The text in the TBODY section should be left aligned -->
<title>tbody_align_left</title>
</head>
<body>
<p>The TBODY element labels the body area of a table. In this test, the TBODY 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>
<tr>
<td>This text is in the TFOOTThis text is in the TFOOT</td>
<td>This text is in the TFOOTThis text is in the TFOOT</td>
</tr>
</tfoot>
<tbody align="left">
<tr>
<td>This text is in the TBODY</td>
<td>This text is in the TBODY</td>
</tr>
<tbody>
</table>
</body>
</html>