このように動的にiFrameを生成します
var iframe=document.createElement('iframe');
document.body.appendChild(iframe);
var iframedoc=iframe.contentDocument||iframe.contentWindow.document;
iframedoc.body.innerHTML="HI";
フィドル: http: //jsfiddle.net/Pbj7S/
Google Chrome、Opera、Safariで動作しますが、Firefoxでは動作しません。
なぜですか?