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

55 строки
1.1 KiB
HTML
Исходник Обычный вид История

1999-04-05 23:56:05 +04:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<!-- test case: tables_caption_align_left.html -->
<!-- description: HTML 4.0 TABLE element/CAPTION attribute -->
<!-- Author: Christine Dreckman Date: 1/11/99 -->
<!-- Modified: Christine Dreckman Date: 2/16/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 CAPTION attribute of the TABLE element tag-->
<!-- Expected result: A table should be displayed with a left aligned caption -->
<title>tables_caption_align_left</title>
</head>
<body>
<p>The caption should be aligned at the left side of the top of the table.</p>
<table border=1>
<caption align=left>Wild Cats</caption>
<tr>
<td>Lion</td>
<td>Leopard</td>
<td>Cheetah</td>
</tr>
<tr>
<td>Jaguar</td>
<td>Bobcat</td>
<td>Ocelot</td>
</tr>
</table>
</body>
</html>