karnaze%netscape.com 40c7757fb4 table regression tests
git-svn-id: svn://10.0.0.236/trunk@26311 18797224-902f-48f8-a5cc-f745e15eee43
1999-04-05 19:56:05 +00:00

31 lines
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>