root/LayoutTests/http/tests/security/resources/green-background-allow-credentials.php

/* [<][>][^][v][top][bottom][index][help] */
<?php
header("Access-Control-Allow-Origin: http://127.0.0.1:8000");
header("Access-Control-Allow-Credentials: true");

$name = 'green-background.css';
$fp = fopen($name, 'rb');
header("Content-Type: text/css");
header("Content-Length: " . filesize($name));

fpassthru($fp);
exit;
?>

/* [<][>][^][v][top][bottom][index][help] */