blob: baecc8f35af997f96f2875e99e84dc926598d17c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<script>
function start() {
o1=document.createElement('iframe');
o1.addEventListener('load',fun0);
document.body.appendChild(o1);
}
function fun0() {
o5=o1.contentDocument;
o52=function() {let x=o5.querySelectorAll('*:not([id])');return x[x.length-1]}();
o1.contentWindow.onresize=fun1;
o1.height='5px';
o52.clientTop;
}
function fun1() {
document.documentElement.appendChild(o1);
}
</script>
<body onload="start()"></body>
|