Chromium Code Reviews

Side by Side Diff: LayoutTests/http/tests/misc/resources/image-checks-for-rw.php

Issue 951303003: Added basic client hints support. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
(Empty)
1 <?php
2 $rw = $_SERVER["HTTP_RW"];
3
4 if($rw) {
5 $fn = fopen("compass.jpg", "r");
6 fpassthru($fn);
7 fclose($fn);
8 exit;
9 }
10 header("HTTP/1.1 417 Expectation failed");
11 ?>
OLDNEW

Powered by Google App Engine