blob: 9ecf26db6a4fe9f4e7e7d65525ad72cf3097d1a3 [file] [log] [blame]
<html>
<script>
function loadMalwareImage() {
setTimeout(function() {
var img = new Image();
img.src = "malware_image.png";
document.body.appendChild(img);
}, 1);
}
function navigateAndLoadMalwareImage() {
loadMalwareImage();
window.location.href="/never_completes";
}
</script>
<body>
</body>
</html>