1
0
Fork 0
firefox/testing/web-platform/tests/preload/resources/echo-preload-header.py
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

16 lines
644 B
Python

import os
from wptserve.utils import isomorphic_encode
def main(request, response):
response.headers.set(b"Content-Type", request.GET.first(b"type"))
link = request.GET.first(b"link")
response.headers.set(b"Access-Control-Allow-Origin", b"*")
response.headers.set(b"Access-Control-Allow-Credentials", b"true")
if link is not None:
response.headers.set(b"Link", link)
if b"file" in request.GET:
path = os.path.join(os.path.dirname(isomorphic_encode(__file__)), request.GET.first(b"file"));
response.content = open(path, mode=u'rb').read();
else:
return request.GET.first(b"content")