blob: 6e0789384fbf9ef4506071ff914809afed1b032e [file] [log] [blame]
#!/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 $request;
print "<script>if (window.testRunner) testRunner.notifyDone();</script>";
} else {
print "Wrong method: " . $ENV{'REQUEST_METHOD'} . "\n";
}