https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7efc1fe4f0c85c8b1fdc98fe5c53af690d2122af authored by Anne van Kesteren on 24 May 2016, 13:07:58 UTC
cleanup support files
Tip revision: 7efc1fe
form-submission.py
def main(request, response):
    if request.headers.get('Content-Type') == 'application/x-www-form-urlencoded':
        if request.body == 'foo=bara':
            return 'OK'
        else:
            return 'FAIL'
    else:
        if request.POST.first('foo') == 'bar':
            return 'OK'
        else:
            return 'FAIL'

back to top