reduced the file name to < 31 characters

This commit is contained in:
karnaze%netscape.com 1999-04-28 00:42:28 +00:00
Родитель 38870e7a3c
Коммит dbf1c2dbda
3 изменённых файлов: 43 добавлений и 1 удалений

Просмотреть файл

@ -40,7 +40,7 @@ file://s:/mozilla/layout/html/tests/table/marvin/tables_border_0.html
file://s:/mozilla/layout/html/tests/table/marvin/tables_border_1.html
file://s:/mozilla/layout/html/tests/table/marvin/tables_border_2.html
file://s:/mozilla/layout/html/tests/table/marvin/tables_border_3.html
file://s:/mozilla/layout/html/tests/table/marvin/tables_caption_align_bottom.html
file://s:/mozilla/layout/html/tests/table/marvin/tables_caption_align_bot.html
file://s:/mozilla/layout/html/tests/table/marvin/tables_caption_align_left.html
file://s:/mozilla/layout/html/tests/table/marvin/tables_caption_align_right.html
file://s:/mozilla/layout/html/tests/table/marvin/tables_caption_align_top.html

Просмотреть файл

@ -0,0 +1,42 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<!-- test case: tables_caption_align_bottom.html -->
<!-- description: HTML 4.0 TABLE element/CAPTION attribute -->
<!-- Author: Chris Petersen Date: 8/6/98 -->
<!-- Modified: Christine Dreckman Date: 1/19/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 CAPTION attribute of the TABLE element tag-->
<!-- Expected result: A table should be displayed with a bottom aligned caption -->
<title>tables_caption_align_bottom</title>
</head>
<body>
<p>The caption should be at the bottom of the table</p>
<table border=1>
<caption align=bottom>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>

Просмотреть файл