Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / http / tests / misc / error404.pl
blob7d52675c221422b38f187ed6df593102e7c2c1a6
1 #!/usr/bin/perl
2 # Simple script to generate a 404 HTTP error
4 print "Status: 404 Not Found\r\n";
5 print "Content-type: text/html\r\n";
6 print "\r\n";
8 print "<html><body>";
9 print "This 404 error was intentionally generated by a test script.";
10 print "</html></body>";