blob: 6761a6686a6821263f5157cbb1a3bf8a5a84e96c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<html>
<head>
<script>
function crashme() {
var obj = document.getElementById('popupid');
obj.style.visibility='hidden';
}
</script>
</head>
<body onload="crashme();">
<a href="http://www.mozilla.org/">http://www.mozilla.org/</a>
<div id="popupid">
<font>
<script>
document.write('<form>');
document.write('<span>');
document.write('<input>');
document.write('</span>');
document.write('<br>');
document.write('</form>');
</script>
</font>
</div>
</body>
</html>
|