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>