1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12

content / test / data / navigate_on_load.html [blame]

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