<div><div>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?</div><div><br></div><div><html manifest='myManifestFile'></div>
<div><body></div><div><script language="JavaScript"></div><div>  function frameContents1()</div><div>  {</div><div>    var doc = frame1.document;</div><div>    doc.open();</div><div>    doc.write('<img src=image.png>');</div>
<div>    doc.close();</div><div>    return;</div><div>  }</div><div><br></div><div>  function frameContents2()</div><div>  {</div><div>    return "hello";</div><div>  }</div><div></script></div><div><br></div>
<div><iframe name="frame1" src="javascript:parent.frameContents1()"></div><div><iframe name="frame2" src="javascript:parent.frameContents2()"></div><div></body></div>
<div></html></div><div><br></div></div>