servo/tests/wpt/web-platform-tests/common/form-submission.py
2016-04-30 21:42:59 -04:00

12 lines
337 B
Python

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'