root/LayoutTests/http/tests/appcache/resources/auth/subresource.php

/* [<][>][^][v][top][bottom][index][help] */
<?php
  if (!isset($_SERVER['PHP_AUTH_USER'])) {
   header('WWW-Authenticate: Basic realm="WebKit AppCache Test Realm"');
   header('HTTP/1.0 401 Unauthorized');
   echo 'Authentication canceled';
   exit;
  } else {
   echo "/* Empty subresource */";
  }
?>

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