summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/service-workers/service-worker/resources/update-during-installation-worker.py
blob: 3e15926185642a240ffa0223a2836a12fa45bf6d (plain)
1
2
3
4
5
6
7
8
9
10
11
import random

def main(request, response):
    headers = [(b'Content-Type', b'application/javascript'),
               (b'Cache-Control', b'max-age=0')]
    # Plug in random.random() to the worker so update() finds a new worker every time.
    body = u'''
// %s
importScripts('update-during-installation-worker.js');
    '''.strip() % (random.random())
    return headers, body