Removed old tests in preparation for redesign.

This commit is contained in:
Storm Dragon
2026-01-08 00:17:37 -05:00
parent 42bfacdd2c
commit 59484782c0
967 changed files with 0 additions and 93805 deletions

View File

@@ -1,24 +0,0 @@
<html>
<head><title>MouseOvers</title></head>
<script language="JavaScript">
<!--
var myImg = document.getElementById('myImage');
function myMessage() {
alert('Welcome to mouseover-enabled Cthulhu!');
}
if(myImg.addEventListener) {
myImg.addEventListener('mouseover', myMessage, false);
}
else {
myImg.onmouseover = myMessage;
}
//-->
</script>
<body>
<p>Mouseover which will present an traditional alert:</p>
<p><img id="myImage" src="cthulhu-for-tests.jpg" alt="Cthulhu Logo" onMouseOver="myMessage();"></p>
</body>
</html>