<br><br><div class="gmail_quote">On Tue, Jun 30, 2009 at 9:29 PM, Ian Hickson <span dir="ltr">&lt;<a href="mailto:ian@hixie.ch">ian@hixie.ch</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div><div></div><div class="ib">On Thu, 4 Jun 2009, Michael Nordman wrote:<br>
&gt;<br>
&gt; What appcache (if any) should the resulting iframes be associated with? I<br>
&gt; think per the spec, the answer is none. Is that the correct answer?<br>
&gt;<br>
&gt; &lt;html manifest=&#39;myManifestFile&#39;&gt;<br>
&gt; &lt;body&gt;<br>
&gt; &lt;script language=&quot;JavaScript&quot;&gt;<br>
&gt;   function frameContents1()<br>
&gt;   {<br>
&gt;     var doc = frame1.document;<br>
&gt;     doc.open();<br>
&gt;     doc.write(&#39;&lt;img src=image.png&gt;&#39;);<br>
&gt;     doc.close();<br>
&gt;     return;<br>
&gt;   }<br>
&gt;<br>
&gt;   function frameContents2()<br>
&gt;   {<br>
&gt;     return &quot;hello&quot;;<br>
&gt;   }<br>
&gt; &lt;/script&gt;<br>
&gt;<br>
&gt; &lt;iframe name=&quot;frame1&quot; src=&quot;javascript:parent.frameContents1()&quot;&gt;<br>
&gt; &lt;iframe name=&quot;frame2&quot; src=&quot;javascript:parent.frameContents2()&quot;&gt;<br>
&gt; &lt;/body&gt;<br>
&gt; &lt;/html&gt;<br>
<br>
</div></div>If there&#39;s no manifest=&quot;&quot;, there&#39;s no application cache selected, as far<br>
as I can tell.</blockquote><div><br></div><div>Thats what it looks like to me too in the current draft. Wondering if thats the right behavior though?</div><div><br></div><div>Generally when loading a frame, the appcache from which the doc resource was loaded gets selected (augmented by an explicit manifest attribute that can make something &#39;foreign&#39;).</div>
<div><br></div><div>In this case, the src is a script embedded in a page that is appcached, so in a transitory sense the doc resource was loaded from an appcache, but that cache does not get selected.</div><div><br></div>
<div>Feels like maybe image.png should load from myManifestFile in the sample?</div><div><br></div></div>