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 src="render_image.php?look_ma_get_parameter" alt="foo" />
My experimenting indicates that offline storage treats render_image.php
as different from render_image.php?look_ma_get_parameter
. This is the behavior I want, so that's good. But I want to make sure that this is something that I can rely on, and not merely the behavior of the browser I tested.
Can I rely on this behavior? Is it part of the spec?