mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 22:28:59 +02:00
Automatic update from web-platform-testsHTML: document.open() and aborting documents (#10789) For https://github.com/whatwg/html/pull/3999. Co-authored-by: Anne van Kesteren <annevk@annevk.nl> -- wpt-commits: 2c6612a9b0f67c95fc8cc772cfecc2c1d435d75d wpt-pr: 10789 --HG-- rename : testing/web-platform/tests/html/semantics/scripting-1/the-script-element/resources/slow.py => testing/web-platform/tests/common/slow.py
5 lines
83 B
Python
5 lines
83 B
Python
import time
|
|
|
|
def main(request, response):
|
|
time.sleep(2)
|
|
return 200, [], ''
|