I have two frames. The pages in both frames come from the same domain (either localhost or a live domain - both using the same protocol).
The first frame needs to ac
In Chrome, accessing window.frames[index] gets you a Window object, from which you can access good stuff like the document within that frame's content.
Accessing it by document.getElementById returns only the iframe element itself, with almost no useful attributes for digging further into the DOM.
This bug in not being able to access the Window object by its name using window.frames[name] the way other browsers do should be fixed!