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

41 строка
1.3 KiB
HTML
Исходник Обычный вид История

1999-04-05 23:56:05 +04:00
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<!-- test case: tr_bgcolor_fuchsia.html -->
<!-- description: HTML 4.0 TR element/BGCOLOR attribute -->
<!-- Author: Christine Dreckman Date: 1/29/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 BGCOLOR attribute of the TR element tag-->
<!-- Expected result: The first row should be fuchsia; the second row should be white -->
<title>tr_bgcolor_fuchsia</title>
</head>
<body bgcolor="#FFFFFF">
<p>Table with one fuchsia row and one white row</p>
<table border>
<tr bgcolor="fuchsia" >
<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
</tr>
<tr>
<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
<td>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</td>
</tr>
</table>
</body>
</html>