This commit is contained in:
jruderman@hmc.edu 2007-12-13 20:58:42 -08:00
Родитель d200d95d70
Коммит 005fb6e234
2 изменённых файлов: 31 добавлений и 1 удалений

Просмотреть файл

@ -0,0 +1,29 @@
<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, 3000);">
<textarea id="ta">x</textarea>
</body>
</html>

Просмотреть файл

@ -3,4 +3,5 @@ load 326618-1.html
load 326865-1.html
load 338391-1.xhtml
load 343730-1.xhtml
load 386000-1.html
load 386000-1.html
load 399712-1.html