I'm loading my site's Offline page in a service worker, and caching it for later.
The Offline page contains references to fonts and images via urls in the embedded CSS and HTML
Are there DOM functions within modern JS that let me extract all of these URLs, so that I can get the service worker to go and fetch (and cache) these too?
Please don't suggest regex/other manual response body parsing techniques.