root/LayoutTests/http/tests/security/resources/abe-allow-star.php

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

$name = 'abe.png';
$fp = fopen($name, 'rb');
header("Content-Type: image/png");
header("Content-Length: " . filesize($name));

fpassthru($fp);
exit;
?>

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