1
0
Fork 0
firefox/dom/base/crashtests/399712-1.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

29 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>