Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/http/tests/resources/echo-headers.php |
| diff --git a/third_party/WebKit/LayoutTests/http/tests/resources/echo-headers.php b/third_party/WebKit/LayoutTests/http/tests/resources/echo-headers.php |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..74f29d81adfdd73ece5b0c7eb0858f444b7bda19 |
| --- /dev/null |
| +++ b/third_party/WebKit/LayoutTests/http/tests/resources/echo-headers.php |
| @@ -0,0 +1,5 @@ |
| +<?php |
| +foreach ($_SERVER as $name => $value) { |
| + echo $name . ": " . $value . "\n"; |
| +} |
| +?> |