| 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"; | 
|  |