[whatwg] AppCache and javascript url question?

Michael Nordman michaeln at google.com
Thu Jun 4 17:45:11 PDT 2009


What appcache (if any) should the resulting iframes be associated with? I
think per the spec, the answer is none. Is that the correct answer?

<html manifest='myManifestFile'>
<body>
<script language="JavaScript">
  function frameContents1()
  {
    var doc = frame1.document;
    doc.open();
    doc.write('<img src=image.png>');
    doc.close();
    return;
  }

  function frameContents2()
  {
    return "hello";
  }
</script>

<iframe name="frame1" src="javascript:parent.frameContents1()">
<iframe name="frame2" src="javascript:parent.frameContents2()">
</body>
</html>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.whatwg.org/pipermail/whatwg-whatwg.org/attachments/20090604/ce1ec007/attachment-0002.htm>


More information about the whatwg mailing list