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

31 строка
1.0 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<!-- test case: tables_style.html -->
<!-- description: HTML 4.0 TABLE element/STYLE attribute -->
<!-- Author: Christine Dreckman Date: 1/11/98 -->
<!-- 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 STYLE attribute of the TABLE element tag-->
<!-- Expected result: A table with a dashed red border should be displayed -->
<title>table_style</title>
<style type="text/css">
table { border: dashed red }
</style>
</head>
<body>
<table border=2>
<tr>
<td>This is a table with a red dashed border to test the STYLE attribute of the TABLE element.
</td>
<td>This is a table with a red dashed border to test the STYLE attribute of the TABLE element.
</td>
</tr>
</table>
</body>
</html>