repo.or.cz
/
chromium-blink-merge.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git]
/
third_party
/
WebKit
/
LayoutTests
/
http
/
tests
/
misc
/
error404.pl
blob
7d52675c221422b38f187ed6df593102e7c2c1a6
1
#!/usr/bin/perl
2
# Simple script to generate a 404 HTTP error
3
4
print
"Status: 404 Not Found
\r\n
"
;
5
print
"Content-type: text/html
\r\n
"
;
6
print
"
\r\n
"
;
7
8
print
"<html><body>"
;
9
print
"This 404 error was intentionally generated by a test script."
;
10
print
"</html></body>"
;