blob: 90036729e5ffb4aac261ecd5a166fa3c64d46293 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/perl -w
print "Content-type: text/html\n\n";
if ($ENV{'REQUEST_METHOD'} eq "POST") {
read(STDIN, $request, $ENV{'CONTENT_LENGTH'})
|| die "Could not get query\n";
print "<pre>$request</pre>";
print "<script>if (window.testRunner) testRunner.notifyDone();</script>";
} else {
print "Wrong method: " . $ENV{'REQUEST_METHOD'} . "\n";
}
|