Sign in
chromium
/
external
/
github.com
/
WebKit
/
webkit
/
refs/heads/apple-security
/
.
/
LayoutTests
/
http
/
tests
/
webfont
/
slow-ahem-loading.cgi
blob: 9705708e1e95023276ece2f5e6e9e3da8d8b6fbf [
file
] [
edit
]
#!/usr/bin/perl -w
binmode STDOUT
;
print
"Content-type: application/octet-stream\n"
;
print
"Cache-control: no-cache, no-store\n\n"
;
sleep
(
1
);
open FH
,
"<../../../resources/Ahem.ttf"
or
die
;
while
(<
FH
>)
{
print
;
}
close FH
;