- From: Michael Nordman <michaeln@google.com>
- Date: Thu, 4 Jun 2009 17:45:11 -0700
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.htm>
Received on Thursday, 4 June 2009 17:45:11 UTC