mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
372 B
HTML
12 lines
372 B
HTML
|
<html class="reftest-wait">
|
||
|
<body style="border:3px solid;" onload="setTimeout(doe, 0)">
|
||
|
<marquee behavior="alternate" scrollamount="100"><span style="background-color: lime;">marquee</span></marquee>
|
||
|
<script>
|
||
|
function doe() {
|
||
|
document.getElementsByTagName('marquee')[0].stop();
|
||
|
document.documentElement.className = "";
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|