author | puhley |
Thu, 03 May 2012 16:29:48 -0700 | |
branch | testJam |
changeset 59 | cf04909e5908 |
parent 58 | c00e2ad92192 |
child 60 | eabaab2333a4 |
tests/cors/submitted/webkit/resources/access-control-basic-allow-print-headers.php |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tests/cors/submitted/webkit/resources/access-control-basic-allow-print-headers.php Thu May 03 16:29:48 2012 -0700 @@ -0,0 +1,10 @@ +<?php + header("Content-Type: text/plain"); + header("Cache-Control: no-store"); + header("Access-Control-Allow-Origin: *"); + + foreach($_SERVER as $h=>$v) + if(ereg('HTTP_(.+)',$h,$hp)) + echo "$h = $v\n"; + +?>