summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/semantics/encodings/003-1.py
blob: 4f5df2bb10d294693c8b28456beba424c3efac12 (plain)
1
2
3
4
 # -*- coding: utf-8 -*-

def main(request, response):
    return u"PASS" if request.GET.first(b'x').decode('utf-8') == u'å' else u"FAIL"