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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/plugins/resources/slow-resource.pl

Issue 1747713002: Remove http/tests/plugins/interrupted-get-url.html (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/http/tests/plugins/resources/slow-resource.pl
diff --git a/third_party/WebKit/LayoutTests/http/tests/plugins/resources/slow-resource.pl b/third_party/WebKit/LayoutTests/http/tests/plugins/resources/slow-resource.pl
deleted file mode 100755
index 67d496862315e2e4ef244e1df789a94bb788d9d0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/plugins/resources/slow-resource.pl
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/perl -wT
-
-# flush the buffers after each print
-select (STDOUT);
-$| = 1;
-
-print "Content-Type: text/plain\n";
-print "Expires: Thu, 01 Dec 2003 16:00:00 GMT\n";
-print "Cache-Control: no-store, no-cache, must-revalidate\n";
-print "Pragma: no-cache\n";
-print "\n";
-
-print "\xef\xbb\xbfTest for bug 5187: UTF-8 in long text files breaks at some point.\n\n";
-for ($count=1; $count<2000; $count++) {
- print "\x65\xcc\x81";
-}
-sleep 10;
-for ($count=1; $count<2000; $count++) {
- print "\x65\xcc\x81";
-}
-sleep 10;
-for ($count=1; $count<2000; $count++) {
- print "\x65\xcc\x81";
-}

Powered by Google App Engine
This is Rietveld 408576698