Sign in
webkit
/
WebKit
/
8080f6fee45a125d4786642fbf1a845df358d5c0
/
.
/
LayoutTests
/
http
/
tests
/
css
/
resources
/
delayedCircle.py
blob: 300bf214418a1ee19f490ca9aa1bc31443444817 [
file
] [
log
] [
blame
]
#!/usr/bin/env python3
import
sys
import
time
time
.
sleep
(
0.01
)
sys
.
stdout
.
write
(
'Content-Type: image/svg+xml\r\n\r\n'
)
with
open
(
'./circle.svg'
,
'rb'
)
as
open_file
:
sys
.
stdout
.
flush
()
sys
.
stdout
.
buffer
.
write
(
open_file
.
read
())