chromium/content/test/data/navigate_on_load.html

<html>
<head>
<title>Navigate On Load</title>
<script type="text/javascript">
window.onload = () => {
  location.href = '/hello.html';
};
</script>
</head>
<body>
</body>
</html>