blob: 751bb5db7f2d475e3c5d102a31f462e63de413a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<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>
|