mainpage.html
<html>
<div id="123" name="foo"></div>
<iframe src="/innerpage.html"></iframe>
</html>
innerpage.html:
<html>
and here is some GWT widget that needs to access the div with id="123":
DOM.getElementById("123").getAttribute("name")
</html>