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