summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/infrastructure/urls/resolving-urls/query-encoding/resources/css-tmpl.py
blob: d7c9bce2786b44cbd3c4fa755ad60191032188d1 (plain)
1
2
3
4
5
def main(request, response):
    encoding = request.GET['encoding']
    tmpl = request.GET['tmpl']
    sheet = tmpl % u'\\0000E5'
    return [("Content-Type", "text/css; charset=%s" % encoding)], sheet.encode(encoding)