chromium/chrome/test/data/thumbnail_capture/navigate_after_onload.html

<html>
    <body>
        <script type="text/javascript" >
         window.onload = function () {
             // Redirect after onload completes.
             setTimeout(redirect);
         };

         function redirect() {
             window.location.href = "redirect_target.html";
         }
        </script>
    </body>
</html>