私はこのページでテストしていますが、何が欠けているのかわかりません。
// Two frames on the page
> document.getElementsByTagName("frame").length
2
// Same domain, so no security restrictions
> document.getElementsByTagName("frame")[0].src
"http://www.quackit.com/html/templates/frames/menu_1.html"
> window.location.href
"http://www.quackit.com/html/templates/frames/frames_example_1.html"
// Can't access the document
> document.getElementsByTagName("frame")[0].document
undefined
これでうまくいくようですが、何が問題なのでしょうか。IE8で動作する必要がありますが、Chrome(最新の安定版)でもテストしています。