mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
30 lines
437 B
HTML
30 lines
437 B
HTML
<html class="reftest-wait">
|
|
<head>
|
|
<script>
|
|
|
|
function boom()
|
|
{
|
|
document.getElementById("ta").style.overflow = "scroll";
|
|
setTimeout(boom2, 12);
|
|
}
|
|
|
|
function boom2()
|
|
{
|
|
document.getElementById("ta").style.overflow = "";
|
|
setTimeout(boom, 12);
|
|
}
|
|
|
|
function cont()
|
|
{
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="boom(); setTimeout(cont, 800);">
|
|
|
|
<textarea id="ta">x</textarea>
|
|
|
|
</body>
|
|
</html>
|