├── .gitignore ├── .travis.yml ├── README.md ├── design ├── logo-export.svg ├── logo.ai ├── logo.psd └── logo.svg ├── gulpfile.js ├── package.json └── src ├── base.html ├── css ├── _components.scss ├── _global.scss ├── _layout.scss ├── _page-specific.scss ├── _utils.scss └── all.scss ├── data.json ├── demos ├── claim │ ├── index.html │ └── sw.js ├── clients-count │ ├── index.html │ └── sw.js ├── fetch │ ├── index.html │ ├── json.json │ └── sw.js ├── fetchevent │ ├── index.html │ └── sw.js ├── force-reload-loop │ ├── index.html │ └── sw.js ├── forward-requests │ ├── index.html │ └── sw.js ├── gif-stream │ ├── babel.html │ ├── buffer.html │ ├── cat.mpg │ ├── gif.html │ ├── gif.js │ ├── index.html │ ├── jsmpeg-async.js │ ├── jsmpeg-babel.js │ ├── jsmpeg-stream.js │ ├── jsmpeg.js │ ├── regenerator-runtime.js │ ├── stream.html │ └── sw.js ├── globalapis │ ├── index.html │ └── sw.js ├── headers-log │ ├── index.html │ └── sw.js ├── http-redirect │ ├── blah │ │ └── index.html │ ├── index.html │ └── sw.js ├── img-rewrite │ ├── index.html │ └── sw.js ├── install-fail │ ├── error-thrown-oninstall │ │ ├── index.html │ │ └── sw.js │ ├── execution-error │ │ ├── index.html │ │ └── sw.js │ └── rejected-promise │ │ ├── index.html │ │ └── sw.js ├── installactivate │ ├── index.html │ └── sw.js ├── json-stream │ ├── index.html │ ├── photos.json │ └── photos.sjson ├── manual-response │ ├── index.html │ └── sw.js ├── nav-preload │ ├── imgs.html │ ├── index.html │ ├── styles.css │ └── sw.js ├── navigator.serviceWorker │ └── index.html ├── page-cache-bug │ ├── index.html │ └── sw.js ├── postMessage │ ├── index.html │ └── sw.js ├── redirect │ ├── destination │ │ └── index.html │ ├── index.html │ └── sw.js ├── registerunregister │ ├── index.html │ └── sw.js ├── scope │ ├── app-a │ │ ├── index.html │ │ └── sw.js │ ├── app-b-sw.js │ ├── app-b │ │ └── index.html │ ├── index.html │ └── sw.js ├── simple-stream │ ├── index.html │ └── sw.js ├── slow-update │ ├── index.html │ └── sw.js ├── sync │ ├── index.html │ └── sw.js ├── template-stream │ ├── index.html │ ├── prism.js │ ├── styles.css │ └── sw.js └── transform-stream │ ├── cloud.html │ ├── edge-cases.md │ ├── index.html │ └── sw.js ├── img ├── chrome-canary.png ├── chrome.png ├── edge.png ├── firefox-nightly.png ├── firefox.png ├── opera-developer.png ├── opera.png ├── safari.png ├── samsung-internet.png └── webkit.png ├── index.html ├── masthead.html └── resources.html /.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | build 3 | node_modules 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/README.md -------------------------------------------------------------------------------- /design/logo-export.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/design/logo-export.svg -------------------------------------------------------------------------------- /design/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/design/logo.ai -------------------------------------------------------------------------------- /design/logo.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/design/logo.psd -------------------------------------------------------------------------------- /design/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/design/logo.svg -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/package.json -------------------------------------------------------------------------------- /src/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/base.html -------------------------------------------------------------------------------- /src/css/_components.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/css/_components.scss -------------------------------------------------------------------------------- /src/css/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/css/_global.scss -------------------------------------------------------------------------------- /src/css/_layout.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/_page-specific.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/css/_utils.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/css/_utils.scss -------------------------------------------------------------------------------- /src/css/all.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/css/all.scss -------------------------------------------------------------------------------- /src/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/data.json -------------------------------------------------------------------------------- /src/demos/claim/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/claim/index.html -------------------------------------------------------------------------------- /src/demos/claim/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/claim/sw.js -------------------------------------------------------------------------------- /src/demos/clients-count/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/clients-count/index.html -------------------------------------------------------------------------------- /src/demos/clients-count/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/clients-count/sw.js -------------------------------------------------------------------------------- /src/demos/fetch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/fetch/index.html -------------------------------------------------------------------------------- /src/demos/fetch/json.json: -------------------------------------------------------------------------------- 1 | {"hello": "world"} 2 | -------------------------------------------------------------------------------- /src/demos/fetch/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/fetch/sw.js -------------------------------------------------------------------------------- /src/demos/fetchevent/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/fetchevent/index.html -------------------------------------------------------------------------------- /src/demos/fetchevent/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/fetchevent/sw.js -------------------------------------------------------------------------------- /src/demos/force-reload-loop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/force-reload-loop/index.html -------------------------------------------------------------------------------- /src/demos/force-reload-loop/sw.js: -------------------------------------------------------------------------------- 1 | // Blah -------------------------------------------------------------------------------- /src/demos/forward-requests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/forward-requests/index.html -------------------------------------------------------------------------------- /src/demos/forward-requests/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/forward-requests/sw.js -------------------------------------------------------------------------------- /src/demos/gif-stream/babel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/gif-stream/babel.html -------------------------------------------------------------------------------- /src/demos/gif-stream/buffer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/gif-stream/buffer.html -------------------------------------------------------------------------------- /src/demos/gif-stream/cat.mpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/gif-stream/cat.mpg -------------------------------------------------------------------------------- /src/demos/gif-stream/gif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/gif-stream/gif.html -------------------------------------------------------------------------------- /src/demos/gif-stream/gif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/gif-stream/gif.js -------------------------------------------------------------------------------- /src/demos/gif-stream/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/gif-stream/index.html -------------------------------------------------------------------------------- /src/demos/gif-stream/jsmpeg-async.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/gif-stream/jsmpeg-async.js -------------------------------------------------------------------------------- /src/demos/gif-stream/jsmpeg-babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/gif-stream/jsmpeg-babel.js -------------------------------------------------------------------------------- /src/demos/gif-stream/jsmpeg-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/gif-stream/jsmpeg-stream.js -------------------------------------------------------------------------------- /src/demos/gif-stream/jsmpeg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/gif-stream/jsmpeg.js -------------------------------------------------------------------------------- /src/demos/gif-stream/regenerator-runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/gif-stream/regenerator-runtime.js -------------------------------------------------------------------------------- /src/demos/gif-stream/stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/gif-stream/stream.html -------------------------------------------------------------------------------- /src/demos/gif-stream/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/gif-stream/sw.js -------------------------------------------------------------------------------- /src/demos/globalapis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/globalapis/index.html -------------------------------------------------------------------------------- /src/demos/globalapis/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/globalapis/sw.js -------------------------------------------------------------------------------- /src/demos/headers-log/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/headers-log/index.html -------------------------------------------------------------------------------- /src/demos/headers-log/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/headers-log/sw.js -------------------------------------------------------------------------------- /src/demos/http-redirect/blah/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/http-redirect/blah/index.html -------------------------------------------------------------------------------- /src/demos/http-redirect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/http-redirect/index.html -------------------------------------------------------------------------------- /src/demos/http-redirect/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/http-redirect/sw.js -------------------------------------------------------------------------------- /src/demos/img-rewrite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/img-rewrite/index.html -------------------------------------------------------------------------------- /src/demos/img-rewrite/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/img-rewrite/sw.js -------------------------------------------------------------------------------- /src/demos/install-fail/error-thrown-oninstall/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/install-fail/error-thrown-oninstall/index.html -------------------------------------------------------------------------------- /src/demos/install-fail/error-thrown-oninstall/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/install-fail/error-thrown-oninstall/sw.js -------------------------------------------------------------------------------- /src/demos/install-fail/execution-error/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/install-fail/execution-error/index.html -------------------------------------------------------------------------------- /src/demos/install-fail/execution-error/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/install-fail/execution-error/sw.js -------------------------------------------------------------------------------- /src/demos/install-fail/rejected-promise/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/install-fail/rejected-promise/index.html -------------------------------------------------------------------------------- /src/demos/install-fail/rejected-promise/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/install-fail/rejected-promise/sw.js -------------------------------------------------------------------------------- /src/demos/installactivate/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/installactivate/index.html -------------------------------------------------------------------------------- /src/demos/installactivate/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/installactivate/sw.js -------------------------------------------------------------------------------- /src/demos/json-stream/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/json-stream/index.html -------------------------------------------------------------------------------- /src/demos/json-stream/photos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/json-stream/photos.json -------------------------------------------------------------------------------- /src/demos/json-stream/photos.sjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/json-stream/photos.sjson -------------------------------------------------------------------------------- /src/demos/manual-response/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/manual-response/index.html -------------------------------------------------------------------------------- /src/demos/manual-response/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/manual-response/sw.js -------------------------------------------------------------------------------- /src/demos/nav-preload/imgs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/nav-preload/imgs.html -------------------------------------------------------------------------------- /src/demos/nav-preload/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/nav-preload/index.html -------------------------------------------------------------------------------- /src/demos/nav-preload/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/nav-preload/styles.css -------------------------------------------------------------------------------- /src/demos/nav-preload/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/nav-preload/sw.js -------------------------------------------------------------------------------- /src/demos/navigator.serviceWorker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/navigator.serviceWorker/index.html -------------------------------------------------------------------------------- /src/demos/page-cache-bug/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/page-cache-bug/index.html -------------------------------------------------------------------------------- /src/demos/page-cache-bug/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/page-cache-bug/sw.js -------------------------------------------------------------------------------- /src/demos/postMessage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/postMessage/index.html -------------------------------------------------------------------------------- /src/demos/postMessage/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/postMessage/sw.js -------------------------------------------------------------------------------- /src/demos/redirect/destination/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/redirect/destination/index.html -------------------------------------------------------------------------------- /src/demos/redirect/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/redirect/index.html -------------------------------------------------------------------------------- /src/demos/redirect/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/redirect/sw.js -------------------------------------------------------------------------------- /src/demos/registerunregister/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/registerunregister/index.html -------------------------------------------------------------------------------- /src/demos/registerunregister/sw.js: -------------------------------------------------------------------------------- 1 | console.log("SW startup"); 2 | -------------------------------------------------------------------------------- /src/demos/scope/app-a/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/scope/app-a/index.html -------------------------------------------------------------------------------- /src/demos/scope/app-a/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/scope/app-a/sw.js -------------------------------------------------------------------------------- /src/demos/scope/app-b-sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/scope/app-b-sw.js -------------------------------------------------------------------------------- /src/demos/scope/app-b/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/scope/app-b/index.html -------------------------------------------------------------------------------- /src/demos/scope/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/scope/index.html -------------------------------------------------------------------------------- /src/demos/scope/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/scope/sw.js -------------------------------------------------------------------------------- /src/demos/simple-stream/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/simple-stream/index.html -------------------------------------------------------------------------------- /src/demos/simple-stream/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/simple-stream/sw.js -------------------------------------------------------------------------------- /src/demos/slow-update/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/slow-update/index.html -------------------------------------------------------------------------------- /src/demos/slow-update/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/slow-update/sw.js -------------------------------------------------------------------------------- /src/demos/sync/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/sync/index.html -------------------------------------------------------------------------------- /src/demos/sync/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/sync/sw.js -------------------------------------------------------------------------------- /src/demos/template-stream/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/template-stream/index.html -------------------------------------------------------------------------------- /src/demos/template-stream/prism.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/template-stream/prism.js -------------------------------------------------------------------------------- /src/demos/template-stream/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/template-stream/styles.css -------------------------------------------------------------------------------- /src/demos/template-stream/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/template-stream/sw.js -------------------------------------------------------------------------------- /src/demos/transform-stream/cloud.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/transform-stream/cloud.html -------------------------------------------------------------------------------- /src/demos/transform-stream/edge-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/transform-stream/edge-cases.md -------------------------------------------------------------------------------- /src/demos/transform-stream/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/transform-stream/index.html -------------------------------------------------------------------------------- /src/demos/transform-stream/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/demos/transform-stream/sw.js -------------------------------------------------------------------------------- /src/img/chrome-canary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/img/chrome-canary.png -------------------------------------------------------------------------------- /src/img/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/img/chrome.png -------------------------------------------------------------------------------- /src/img/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/img/edge.png -------------------------------------------------------------------------------- /src/img/firefox-nightly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/img/firefox-nightly.png -------------------------------------------------------------------------------- /src/img/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/img/firefox.png -------------------------------------------------------------------------------- /src/img/opera-developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/img/opera-developer.png -------------------------------------------------------------------------------- /src/img/opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/img/opera.png -------------------------------------------------------------------------------- /src/img/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/img/safari.png -------------------------------------------------------------------------------- /src/img/samsung-internet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/img/samsung-internet.png -------------------------------------------------------------------------------- /src/img/webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/img/webkit.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/index.html -------------------------------------------------------------------------------- /src/masthead.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/masthead.html -------------------------------------------------------------------------------- /src/resources.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakearchibald/isserviceworkerready/HEAD/src/resources.html --------------------------------------------------------------------------------