summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/encoding/resources/text-html-meta-charset.py
blob: f73110743ea5f3db084c69fd9429e144d844e63e (plain)
1
2
3
def main(request, response):
  response.headers.set(b"Content-Type", b"text/html")
  response.content = b"<meta charset=\"" + request.GET.first(b"label") + b"\">hello encoding"