mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
17 lines
459 B
HTML
17 lines
459 B
HTML
<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>
|