summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/XMLHttpRequest/resources/invalid-utf8-html.py
blob: 72be41a45e86c3e45aabd081d2047f1de9344faf (plain)
1
2
3
4
5
def main(request, response):
    headers = [("Content-type", "text/html;charset=utf-8")]
    content = chr(0xff)

    return headers, content