12 border:
1px solid black;
16 // We expect to get a message from the inner frame to tell us when
17 // the inner frame's DOM is all set up. We need to scroll down from
18 // this frame, and then, unfortunately, transfer control back to the
19 // inner frame so that it can click on one of the select elements.
20 window
.onmessage = function() {
21 document
.getElementById('scrollable').scrollTop
= 500;
22 document
.getElementById('frame').contentWindow
.postMessage('', '*');
29 <iframe id='frame' src='update-widget-positions-on-nested-frames-and-scrollers-inner-frame.html'
></iframe>