Sign in
webkit
/
WebKit
/
0f9dda3eb5e8bee1224032800f3b156cd5ce812d
/
.
/
LayoutTests
/
http
/
tests
/
resources
/
slow-image.py
blob: 637ab13415abaa21b39d0139e42f36aa4c73f439 [
file
] [
log
] [
blame
]
#!/usr/bin/env python3
import
os
import
sys
import
time
time
.
sleep
(
0.4
)
sys
.
stdout
.
write
(
'Content-Type: image/png\r\n\r\n'
)
with
open
(
'square100.png'
,
'rb'
)
as
open_file
:
sys
.
stdout
.
flush
()
sys
.
stdout
.
buffer
.
write
(
open_file
.
read
())