зеркало из https://github.com/mozilla/pjs.git
33 строки
1.5 KiB
HTML
33 строки
1.5 KiB
HTML
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<!-- test case: tables_onmouseout.html -->
|
|||
|
<!-- description: HTML 4.0 TABLE element/ONMOUSEOUT attribute -->
|
|||
|
<!-- Author: Christine Dreckman Date: 1/13/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 ONMOUSEOUT attribute of the TABLE element tag-->
|
|||
|
<!-- Expected result: Mousing down on the table should cause a Javascript alert dialog box to display -->
|
|||
|
<title>tables_onmouseout</title>
|
|||
|
<script language="Javascript">
|
|||
|
</script>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<p>This tests the ONMOUSEOUT attribute of the TABLE element tag. Mouse over the table and then mouse out of the table. On the mouse out action, a Javascript alert dialog box will be displayed with the following message: 'Mouse over and out of table!'.</p>
|
|||
|
<table border onMouseOut="window.alert ('Mouse over and out of table!')">
|
|||
|
<tr>
|
|||
|
<td> </td>
|
|||
|
<td> </td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td> </td>
|
|||
|
<td> </td>
|
|||
|
</tr>
|
|||
|
</table>
|
|||
|
</body>
|
|||
|
</html>
|
|||
|
|
|||
|
|
|||
|
|