summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/navigation-methods/resources/slow-no-store.py
blob: 48e5fc0266687e4a1c6350601497fdbcffd94087 (plain)
1
2
3
4
5
6
import time

def main(request, response):
    # Sleep for 1sec
    time.sleep(1)
    response.headers.set(b"Cache-Control", b"no-cache, no-store, must-revalidate");