mirror of
https://github.com/servo/servo.git
synced 2025-10-10 21:40:22 +01:00
4 lines
173 B
Python
4 lines
173 B
Python
def main(request, response):
|
|
response.headers.set(b"Content-Type", b"text/javascript")
|
|
response.headers.set(b"Custom", b"\0")
|
|
return b"var thisIsJavaScript = 0"
|