1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/browser-element/mochitest/file_post_request.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,15 @@ 1.4 +<html> 1.5 +<head> 1.6 + <script> 1.7 + addEventListener('load', function() { 1.8 + document.getElementsByTagName('form')[0].submit(); 1.9 + }); 1.10 + </script> 1.11 +</head> 1.12 +<body> 1.13 + <form action="file_empty.html" method="POST"> 1.14 + <input type="text" name="postvalue" value="I am a test string!!" /> 1.15 + <input type="submit" /> 1.16 + </form> 1.17 +</body> 1.18 +</html>