chromium/content/test/data/red_redirect_to_blue.html

<!DOCTYPE html>
<meta charset="utf-8">
<!--
  On a mobile viewport we need to make sure the page does not stretch beyond the
  size of the viewport to avoid displaying a scroll bar.
-->
<meta name="viewport" content="width=device-width,minimum-scale=1">
<html>
  <head>
    <script type="text/javascript">
      if (window.location.hash == '#redirect') {
        window.location.href = "blue.html";
      }
    </script>
  </head>
  <body style="background-color:#FF0000"></body>
</html>