Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / media / resources / setCookie.cgi
blob965bd9d1f295f10143d7f1e228ae1bc4aa23c780
1 #!/usr/bin/perl -wT
2 use CGI;
4 $query = new CGI;
5 $name = $query->param('name');
7 print "Content-Type: text/plain\n";
8 print "Cache-Control: no-store\n";
9 print 'Cache-Control: no-cache="set-cookie"' . "\n";
11 # We only map the SET_COOKIE request header to "Set-Cookie"
12 print "Set-Cookie: TEST=${name}\n\n";