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