diff options
Diffstat (limited to 'testing/web-platform/tests/xhr/resources/form.py')
-rw-r--r-- | testing/web-platform/tests/xhr/resources/form.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/testing/web-platform/tests/xhr/resources/form.py b/testing/web-platform/tests/xhr/resources/form.py new file mode 100644 index 0000000000..c592943b79 --- /dev/null +++ b/testing/web-platform/tests/xhr/resources/form.py @@ -0,0 +1,2 @@ +def main(request, response): + return b"id:%s;value:%s;" % (request.POST.first(b"id"), request.POST.first(b"value")) |