Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(117)

Side by Side Diff: LayoutTests/http/tests/serviceworker/resources/update-worker.php

Issue 1177563005: ServiceWorker: Implement ServiceWorkerRegistration.update() (3) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@implement_update_1
Patch Set: incorporate falken@'s comments Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <?php
2 // Force the browser to cache this script. update() should always bypass this
3 // cache and fetch a new version.
4 header('Cache-Control: max-age=86400');
5
6 // Return a different script for each access.
7 header('Content-Type:application/javascript');
8 echo '// ' . microtime()
9 ?>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698