summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/encoding/resources/single-byte-raw.py
blob: 7e6bb4d408044c76d3c22a97fe0c9e720cea898f (plain)
1
2
3
def main(request, response):
  response.headers.set(b"Content-Type", b"text/plain;charset=" + request.GET.first(b"label"))
  response.content = bytes(range(255))