зеркало из https://github.com/mozilla/gecko-dev.git
20 строки
507 B
HTML
20 строки
507 B
HTML
<!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>
|