forked from mirrors/gecko-dev
Automatic update from web-platform-tests HTML: Add tentative tests for speculative HTML parsing See https://github.com/whatwg/html/issues/5624 -- wpt-commits: 9afacb73a04c1f33837eb0a7ffcd9ec16c9d477f wpt-pr: 24521
6 lines
148 B
Python
6 lines
148 B
Python
import time
|
|
|
|
def main(request, response):
|
|
delay = float(request.GET.first(b"delay", 2000)) / 1000
|
|
time.sleep(delay)
|
|
return 200, [], b''
|