Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

  • This WPT test may be referenced by the following Test IDs:
<!doctype html>
<html class="reftest-wait">
<title>Rendering of tall cross-domain iframe element in a scrolled window</title>
<link rel="match" href="tall-cross-domain-iframe-in-scrolled.sub-ref.html">
<meta name="assert" content="Checks that tall cross-domain iframe in a scrolled window is correctly rendered">
<iframe id=myframe style="width: 300px; height: 1000px"
<div style="height: 2000px"></div>
<script>
window.scrollTo(0, 700);
myframe.onload = () => {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.documentElement.classList.remove('reftest-wait');
});
});
}
</script>
</html>