Source code

Revision control

Copy as Markdown

Other Tools

<!-- Any copyright is dedicated to the Public Domain.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Spam Page Test</title>
</head>
<body>
<p> Hello, it's the spammy page! </p>
<script type="text/javascript">
let count = 0;
window.onload = window.onclick = function() {
if (count < 100) {
count++;
let l = document.createElement('a');
l.href = 'data:text/plain,some text';
l.download = 'sometext.txt';
document.body.appendChild(l);
l.click();
}
}
</script>
</body>
</html>