1
0
Fork 0
firefox/testing/web-platform/tests/xhr/resources/shift-jis-html.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

6 lines
235 B
Python

def main(request, response):
headers = [(b"Content-type", b"text/html;charset=shift-jis")]
# Shift-JIS bytes for katakana TE SU TO ('test')
content = bytes([0x83, 0x65, 0x83, 0x58, 0x83, 0x67])
return headers, content