summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/XMLHttpRequest/resources/win-1252-xml.py
blob: 09c32e4574b889974153abecb2b99eeb79c131fa (plain)
1
2
3
4
5
def main(request, response):
    headers = [("Content-type", "application/xml;charset=windows-1252")]
    content = '<' + chr(0xff) + '/>'

    return headers, content