blob: 6aa00e27538e28ea0370511e9e396a62b7c1d544 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<html class="reftest-wait"><head><script>
function load() {
window.frames[0].focus();
setTimeout("load2();", 100);
}
function load2() {
document.body.setAttribute('style','display: inline');
document.documentElement.removeAttribute("class");
}
function beforeCopy() {
document.removeChild(document.documentElement);
}
</script></head>
<body onload="load();"
onbeforecopy="beforeCopy();"><iframe></iframe></body>
</html>
|