blob: 53a2dab1bc2dc63c4e6706d69b2e8bc66e13ba6c [file] [log] [blame]
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Navigation in onload handler through form submission</title>
<script>
function redirect() {
document.querySelector("#redirectionForm").submit();
}
</script>
</head>
<body onload="redirect();">
<form id="redirectionForm" action="navigation-in-onload_form-submission-2.tentative.html" method="get"></form>
</body>
</html>