Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / media / resources / video-check-userpass.php
blobf51df57e117192cd5c91b8f6478ae68f1ec34cd5
1 <?php
3 $auth = $_SERVER["HTTP_AUTHORIZATION"];
4 $url = $_SERVER["REQUEST_URI"];
6 if (isset($auth) || stripos($url, "user:pass") !== false)
7 die;
9 $fileName = $_GET["name"];
10 $type = $_GET["type"];
12 $_GET = array();
13 $_GET['name'] = $fileName;
14 $_GET['type'] = $type;
15 @include("./serve-video.php");