I'm using the frameElement.id JavaScript property to make some changes to the page when nested in a particular iFrame.
There is a case where I have an iFrame with that ID nested in an iFrame with that ID. So it looks like:
Main Page:
<body>
<iframe src="url.htm" id="show_body_only"></iframe>
</body>
url.htm:
<body>
<iframe src="url2.htm" id="show_body_only"></iframe>
</body>
Just wondering if this is semantically correct.
Please do not berate for all the iFrames, I had little choice.
As far as CSS, the spec says:
If the frames explicitly share stylesheets, then the IDs will be applied separately since each frame is its own document.
As far as the DOM, the spec says:
If the frame nodes are imported and adopted, then
getElementById
returns the first match.References
CSS3: ID Selectors
DOM4 Concepts: node document
Document.adoptNode()
DOM4 5.2.2: Interface NonElementParentNode