Chromium Code Reviews

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

Issue 951303003: Added basic client hints support. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed expected files 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 $dpr = $_SERVER["HTTP_DPR"];
3
4 if($dpr) {
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
« no previous file with comments | « LayoutTests/http/tests/misc/client-hints-no-accept.html ('k') | LayoutTests/http/tests/misc/resources/image-checks-for-rw.php » ('j') | no next file with comments »

Powered by Google App Engine