33 lines
1.4 KiB
HTML
33 lines
1.4 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<!-- test case: tables_onclick.html -->
|
|
<!-- description: HTML 4.0 TABLE element/ONCLICK attribute -->
|
|
<!-- Author: Christine Dreckman Date: 1/13/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 ONCLICK attribute of the TABLE element tag-->
|
|
<!-- Expected result: Clicking on the table should cause a Javascript alert dialog box to display -->
|
|
<title>tables_onclick</title>
|
|
<script language="Javascript">
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p>This tests the ONCLICK attribute of the TABLE element tag. Click on the table and a Javascript alert dialog box will display with the following message: 'Clicked!'.</p>
|
|
<table border onClick="window.alert ('Clicked!')">
|
|
<tr>
|
|
<td> </td>
|
|
<td> </td>
|
|
</tr>
|
|
<tr>
|
|
<td> </td>
|
|
<td> </td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|