blob: db24cf42b7f141e098b6bcbf21efed1ccfa3be8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<html class="reftest-wait">
<body style="background-color: red;"
onload="HandleLoad()">
<script>
function HandleLoad() {
setTimeout(function() {
document.body.style.backgroundColor = "green";
document.documentElement.className = "";
}, 100);
}
</script>
</body>
|