Upstream version 11.40.271.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / http / tests / xmlhttprequest / resources / echo-request-origin.php
1 <?php
2 header('Content-Type: text/plain');
3 if (isset($_SERVER['HTTP_ORIGIN']))
4     echo 'Origin: ' . $_SERVER['HTTP_ORIGIN'];
5 else
6     echo 'Origin: <missing>';
7 ?>