cross-domain-iframe-in-multicol.sub.html (822B)
1 <!doctype html> 2 <html class="reftest-wait"> 3 <title>Rendering of cross-domain iframe element in multicol</title> 4 <link rel="match" href="cross-domain-iframe-in-multicol.sub-ref.html"> 5 <link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#embedded-content-rendering-rules"> 6 <meta name="assert" content="Checks that cross-domain iframe in multicol is correctly rendered"> 7 <div style="columns: 2; height: 300px"> 8 <div style="height: 100px"></div> 9 <iframe id=myframe src="http://{{domains[www1]}}:{{ports[http][0]}}/images/green.png"></iframe> 10 <div style="height: 100px"></div> 11 </div> 12 <script> 13 myframe.onload = () => { 14 requestAnimationFrame(() => { 15 requestAnimationFrame(() => { 16 document.documentElement.classList.remove('reftest-wait'); 17 }); 18 }); 19 } 20 </script> 21 </html>