Make sure all files that should be present are present.
This commit is contained in:
16
test/html/clickable.html
Normal file
16
test/html/clickable.html
Normal file
@ -0,0 +1,16 @@
|
||||
<html>
|
||||
<head><title>Clickable</title></head>
|
||||
<script language="JavaScript">
|
||||
<!--
|
||||
function myMessage(msg) {
|
||||
alert(msg);
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<body>
|
||||
<p>Clickable image: <img src="cthulhu-for-tests.jpg" alt="Cthulhu Logo" onClick="myMessage('image clicked');">More text.</p>
|
||||
<p>Clickable span: <span onClick="myMessage('span clicked');">Click Me.</span> More text.</p>
|
||||
<p>Clickable div: <div onClick="myMessage('div clicked');">Click Me.</div> More text.</p>
|
||||
</body>
|
||||
</html>
|
||||
|
Reference in New Issue
Block a user