Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(186)

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: Removed expected files Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
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
« no previous file with comments | « LayoutTests/http/tests/misc/resources/image-checks-for-dpr.php ('k') | Source/core/fetch/ImageResource.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698