See Shared Workers and create prototype in attempt to prevent need to disconnect and reconnect from proxy server during page turns.
https://html.spec.whatwg.org/multipage/workers.html
See Shared Workers and create prototype in attempt to prevent need to disconnect and reconnect from proxy server during page turns.
See also the WHATWG spec on PageTransitionEvent.persisted which states a page is not salvageable for caching purposes if the page includes any of the following:
Listening for beforeunload events
Listening for unload events
Having iframes that are not salvageable
Active WebSocket objects
Aborting a Document
Of special interest is the active WebSocket objects.
See also the [WHATWG spec](https://html.spec.whatwg.org/multipage/browsing-the-web.html#the-pagetransitionevent-interface) on `PageTransitionEvent.persisted` which states a page is not salvageable for caching purposes if the page includes any of the following:
- Listening for `beforeunload` events
- Listening for `unload` events
- Having `iframe`s that are not salvageable
- Active `WebSocket` objects
- Aborting a `Document`
Of special interest is the active `WebSocket` objects.
https://html.spec.whatwg.org/multipage/workers.html
See Shared Workers and create prototype in attempt to prevent need to disconnect and reconnect from proxy server during page turns.
See also the WHATWG spec on
PageTransitionEvent.persisted
which states a page is not salvageable for caching purposes if the page includes any of the following:beforeunload
eventsunload
eventsiframe
s that are not salvageableWebSocket
objectsDocument
Of special interest is the active
WebSocket
objects.https://developer.mozilla.org/en-US/docs/Web/API/BroadcastChannel