Tagged Questions
1
vote
1answer
2k views
HTML5 Offline Appcache Updates Not Showing In Firefox
I have an index.php file in my docroot. It produces output that starts with this:
<!DOCTYPE html>
<html manifest="manifest.appcache">
The manifest.appcache tells browsers to cache it ...
0
votes
1answer
462 views
Will HTML5 offline storage always treat URLs with different GET parameters as different resources?
If I use HTML5 offline storage to cache a file like so in the manifest:
CACHE:
render_image.php
then what happens if the page includes code like so?:
<img ...
0
votes
1answer
428 views
SVG Fonts and Cache Manifest
"SVG fonts don't work with a cache manifest. Due to the manifest treating # as comments and Mobile Safari requiring the font ID reference in the URL. (via Tristan Dunn)"
...