blob: 01c2df5ef2c04c64c9269b02bc4c8075f872e3e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!DOCTYPE HTML>
<!-- Any copyright is dedicated to the Public Domain.
- http://creativecommons.org/publicdomain/zero/1.0/ -->
<html>
<head>
<script>
function submitForm() {
document.getElementById("form").submit();
}
</script>
</head>
<body onload="submitForm()">
<form action="http://Mochi.test:8888/tests/netwerk/test/mochitests/origin_header.sjs"
method="POST"
id="form">
<input type="submit" value="Submit POST">
</form>
</body>
</html>
|