Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / xmlhttprequest / resources / post-echo-as-ascii.cgi
1 #!/usr/bin/perl -wT
2
3 print "Content-type: text/plain\n\n"; 
4
5 if ($ENV{'REQUEST_METHOD'} eq "POST") {
6     read(STDIN, $request, $ENV{'CONTENT_LENGTH'})
7                 || die "Could not get query\n";
8     my @array = split //, $request;
9     @array = map(ord, @array);
10     print "@array";
11 } else {
12     print "Wrong method: " . $ENV{'REQUEST_METHOD'} . "\n";
13