blob: bf5ede96d9a9aea2b14926bb084d722142de5ba5 (
plain)
1
2
3
4
5
6
7
8
9
10
|
<!doctype html>
<meta name='referrer' content='no-referrer'>
<body onload='start()'>
<script>
function start() {
myform.submit();
parent.removeIframe();
}
</script>
<form id='myform' action='about:blank' target='does-not-exist'>
|