1
0
Fork 0
firefox/testing/web-platform/tests/fetch/nosniff/resources/image.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

24 lines
762 B
Python

import os.path
from wptserve.utils import isomorphic_decode
def main(request, response):
type = request.GET.first(b"type", None)
if type != None and b"svg" in type:
filename = u"green-96x96.svg"
else:
filename = u"blue96x96.png"
path = os.path.join(os.path.dirname(isomorphic_decode(__file__)), u"../../../images", filename)
body = open(path, u"rb").read()
response.add_required_headers = False
response.writer.write_status(200)
response.writer.write_header(b"x-content-type-options", b"nosniff")
response.writer.write_header(b"content-length", len(body))
if(type != None):
response.writer.write_header(b"content-type", type)
response.writer.end_headers()
response.writer.write(body)