Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / security / resources / green-background-allow-credentials.php
1 <?php
2 header("Access-Control-Allow-Origin: http://127.0.0.1:8000");
3 header("Access-Control-Allow-Credentials: true");
4
5 $name = 'green-background.css';
6 $fp = fopen($name, 'rb');
7 header("Content-Type: text/css");
8 header("Content-Length: " . filesize($name));
9
10 fpassthru($fp);
11 exit;
12 ?>