зеркало из https://github.com/mozilla/pjs.git
37 строки
1.1 KiB
HTML
37 строки
1.1 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" >
|
|
<html>
|
|
<head>
|
|
<!-- testcase: tables_row_align_right.html
|
|
description: HTML Text Markup Element, TABLE/TR/ALIGN -->
|
|
<!-- Author: Chris Petersen Date: 8/6/98 -->
|
|
<!-- CONFIDENTIAL AND PROPRIETARY TEST SCRIPT OF NETSCAPE COMMUNICATIONS CORPORATION
|
|
Copyright © 1998 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 TABLE/TR/ALIGN tag.-->
|
|
<!-- Expected result: The contents of each cell should right aligned -->
|
|
<title>Web Browser Web View (HTML): Document TABLE/TR/ALIGN</title>
|
|
</head>
|
|
<body>
|
|
The table displayed is two rows by three columns. Each table row has been aligned
|
|
right. The table has been assigned a width and border value so that it is easier to
|
|
see the alignment.<br>
|
|
<table width=300 border=1>
|
|
<tr align=right>
|
|
<td>Navigator</td>
|
|
<td>Messenger</td>
|
|
<td>Collabra</td>
|
|
</tr>
|
|
<tr align=right>
|
|
<td>Composer</td>
|
|
<td>Calendar</td>
|
|
<td>Netcaster</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|