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

    return headers, content