The document on the main page contains iframe (src = "text.html"). I wrote a script in the text.html document itself, which clears the scrolling, stretching the content to the full height of the parent screen:
parent.document.getElementById('iframe0').style.height = document.documentElement.offsetHeight + 'px';
Everything is fine in Mozille and Opera, but in Google Chrome, when the page is updated, this frame SUDDENLY appears scrolling. Is this a Chrome bug? Or am I missing something?