mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
393 B
HTML
14 lines
393 B
HTML
|
<html class="reftest-wait"><head>
|
||
|
</head><body>
|
||
|
<iframe></iframe><iframe></iframe>
|
||
|
<script>
|
||
|
window.frames[0].focus();
|
||
|
function doe() {
|
||
|
document.body.setAttribute('onbeforecopy','document.removeChild(document.documentElement)');
|
||
|
document.body.setAttribute('style','display:none');
|
||
|
document.documentElement.removeAttribute("class");
|
||
|
}
|
||
|
setTimeout(doe, 100);
|
||
|
</script>
|
||
|
</body></html>
|