https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 1614d65d2cd50d167c605cf212f35db792a38c31 authored by Yutaka Hirano on 03 April 2018, 01:48:59 UTC
fix
Tip revision: 1614d65
encoding.py
from cgi import escape

def main(request, response):
    label = request.GET.first('label')
    return """<!doctype html><meta charset="%s">""" % escape(label)
back to top