Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / resources / image-checks-for-viewport-width.php
blob97675cd8c11f96cf8d64d4ccb3b8661263e375c4
1 <?php
2 $vw = $_SERVER["HTTP_VIEWPORT_WIDTH"];
3 $expected_vw = $_GET["viewport"];
5 if ((isset($expected_vw) && $vw == $expected_vw) || (isset($vw) && !isset($expected_vw))) {
6 $fn = fopen("compass.jpg", "r");
7 fpassthru($fn);
8 fclose($fn);
9 exit;
11 header("HTTP/1.1 417 Expectation failed");