HTTPサーバーを作成するNODE JSモジュールを使用しています。サーバーの応答は、Web ページを に埋め込む JavaScript を含むページです。応答コードは次のとおりです。
<html>
<head>
<script type='text/javascript'>
function test() {
document.body.innerHTML='<iframe id="ifool" src="URL" sandbox="allow-same-origin allow-forms allow-scripts"> </iframe>';
var c;
window.setInterval(function(){
c=document.getElementById("ifool").contentWindow.location.href;
window.history.pushState(0,0,c);
},100);
</script>
</head>
<body onload= "test()">
</body>
</html>
FF で Firebug を使用しています。次のエラーが表示されます。
Error: Permission denied to access property 'href'
c=document.getElementById("ifool").contentWindow.location.href;