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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/webfont/resources/cookie-match.php

Issue 1417943005: Fix corrupted LayoutTests/http/tests/resources/Ahem.ttf (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make http tests use the fixed file Created 5 years, 2 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: third_party/WebKit/LayoutTests/http/tests/webfont/resources/cookie-match.php
diff --git a/third_party/WebKit/LayoutTests/http/tests/webfont/resources/cookie-match.php b/third_party/WebKit/LayoutTests/http/tests/webfont/resources/cookie-match.php
index fb9b3153af738dd33268480037bd7da58ab2c669..025a70b94390efcdef7b7e07e1c3ac0518dda255 100644
--- a/third_party/WebKit/LayoutTests/http/tests/webfont/resources/cookie-match.php
+++ b/third_party/WebKit/LayoutTests/http/tests/webfont/resources/cookie-match.php
@@ -6,7 +6,7 @@ if (!isset($_COOKIE["key"])) {
}
if ($_GET["key"] == $_COOKIE["key"]) {
- $fp = fopen("../../../../resources/Ahem.ttf", "rb");
+ $fp = fopen("../../resources/Ahem.ttf", "rb");
header("Content-type: application/octet-stream");
header("HTTP/1.0 200 OK");
fpassthru($fp);

Powered by Google App Engine
This is Rietveld 408576698