summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/XMLHttpRequest/resources/delay.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/XMLHttpRequest/resources/delay.py')
-rw-r--r--testing/web-platform/tests/XMLHttpRequest/resources/delay.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/testing/web-platform/tests/XMLHttpRequest/resources/delay.py b/testing/web-platform/tests/XMLHttpRequest/resources/delay.py
deleted file mode 100644
index bdfef9b34..000000000
--- a/testing/web-platform/tests/XMLHttpRequest/resources/delay.py
+++ /dev/null
@@ -1,6 +0,0 @@
-import time
-
-def main(request, response):
- delay = float(request.GET.first("ms", 500))
- time.sleep(delay / 1E3);
- return [("Content-type", "text/plain")], "TEST_DELAY"