| Index: LayoutTests/http/tests/serviceworker/resources/update-worker.php
|
| diff --git a/LayoutTests/http/tests/serviceworker/resources/update-worker.php b/LayoutTests/http/tests/serviceworker/resources/update-worker.php
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e7e798f34cf1241820347fb3320e73e326ed2c81
|
| --- /dev/null
|
| +++ b/LayoutTests/http/tests/serviceworker/resources/update-worker.php
|
| @@ -0,0 +1,9 @@
|
| +<?php
|
| +// Force the browser to cache this script. update() should always bypass this
|
| +// cache and fetch a new version.
|
| +header('Cache-Control: max-age=86400');
|
| +
|
| +// Return a different script for each access.
|
| +header('Content-Type:application/javascript');
|
| +echo '// ' . microtime()
|
| +?>
|
|
|