Sign in
webkit
/
WebKit
/
0f9dda3eb5e8bee1224032800f3b156cd5ce812d
/
.
/
LayoutTests
/
http
/
tests
/
xmlhttprequest
/
resources
/
echo-host.py
blob: e94d2b81775d88a1b1ff0e61b052da13dcd2b78d [
file
] [
log
] [
blame
]
#!/usr/bin/env python3
import
os
import
sys
sys
.
stdout
.
write
(
'Content-Type: text/plain\r\n'
'\r\n'
'{}\n'
.
format
(
os
.
environ
.
get
(
'HTTP_HOST'
))
)