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

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

Issue 1183233002: Split RW hint into Width and Viewport-Width (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fixed and added layout tests Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/misc/resources/image-checks-for-rw.php
diff --git a/LayoutTests/http/tests/misc/resources/image-checks-for-rw.php b/LayoutTests/http/tests/misc/resources/image-checks-for-rw.php
deleted file mode 100644
index c6cd2d85bc292f7288dae11bde11210fb79d6f82..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/misc/resources/image-checks-for-rw.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
- $rw = $_SERVER["HTTP_RW"];
- $expected_rw = $_GET["rw"];
-
- if ((isset($expected_rw) && $rw == $expected_rw) || (isset($rw) && !isset($expected_rw))) {
- $fn = fopen("compass.jpg", "r");
- fpassthru($fn);
- fclose($fn);
- exit;
- }
- header("HTTP/1.1 417 Expectation failed");
-?>

Powered by Google App Engine
This is Rietveld 408576698