зеркало из https://github.com/mozilla/pjs.git
39 строки
1.3 KiB
HTML
39 строки
1.3 KiB
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<!-- testcase: thead_align_right.html -->
|
|||
|
<!-- description: HTML 4.0 THEAD element/ALIGN-RIGHT attribute -->
|
|||
|
<!-- Author: Christine Dreckman Date: 1/13/99 -->
|
|||
|
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
|||
|
Copyright <20> 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-RIGHT attribute of the THEAD element. -->
|
|||
|
<!-- Expected result: The text in the THEAD section should be right aligned -->
|
|||
|
<title>thead_align_right</title>
|
|||
|
</head>
|
|||
|
|
|||
|
<body>
|
|||
|
<p>The THEAD element labels the head area of a table. In this test, the THEAD text should be right aligned.</p>
|
|||
|
|
|||
|
<table border>
|
|||
|
<thead align="right">
|
|||
|
<tr>
|
|||
|
<td>This text is in the THEAD</td>
|
|||
|
<td>This 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>
|
|||
|
<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>
|