mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
15 lines
259 B
HTML
15 lines
259 B
HTML
|
<!DOCTYPE html>
|
||
|
<html class="reftest-wait">
|
||
|
<head>
|
||
|
<script>
|
||
|
function go() {
|
||
|
window.location = "javascript: foopy();";
|
||
|
setTimeout(function(){document.documentElement.removeAttribute("class");}, 0);
|
||
|
}
|
||
|
|
||
|
</script>
|
||
|
</head>
|
||
|
<body onload="go()">
|
||
|
</body>
|
||
|
</html>
|