Since Firefox is prompting the user to store data when using the HTML5 application cache, I want to disable it in Firefox to avoid the prompt notification.
One way to do that is serving two different HTML files: one for Firefox with <html>
and one for the other browsers with <html manifest=...>
.
But for efficiency purposes I want to serve one single static file.
So how do I disable the application cache while serving a file with <html manifest=...>
in Firefox?