- add third_party src.
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / cache / resources / echo-no-store.cgi
1 #!/usr/bin/perl -w
2
3 print "Content-type: text/plain\n"; 
4 print "Cache-control: no-store\n";
5 print "\n";
6 read(STDIN, $data, $ENV{'CONTENT_LENGTH'});
7 print $data