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

Unified Diff: LayoutTests/http/tests/htmlimports/resources/cookie.cgi

Issue 15856002: First step of HTMLImports (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed Mac build Created 7 years, 7 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/htmlimports/resources/cookie.cgi
diff --git a/LayoutTests/http/tests/htmlimports/resources/cookie.cgi b/LayoutTests/http/tests/htmlimports/resources/cookie.cgi
new file mode 100755
index 0000000000000000000000000000000000000000..91570c877edacef8341e8b45b0bf21a9a6fe9033
--- /dev/null
+++ b/LayoutTests/http/tests/htmlimports/resources/cookie.cgi
@@ -0,0 +1,9 @@
+#!/usr/bin/perl -wT
+use strict;
+
+print "Content-Type: text/html\n";
+print "Cache-Control: no-store\n";
+print 'Cache-Control: no-cache="set-cookie"' . "\n";
+print "Set-Cookie: htmlimport=hello\n\n";
+
+print "<html><body><h1>Cookie Sent!</h1></body></html>\n";

Powered by Google App Engine
This is Rietveld 408576698