Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<html class="reftest-wait">
<title>Rendering of cross-domain iframe element in multicol</title>
<link rel="match" href="cross-domain-iframe-in-multicol.sub-ref.html">
<meta name="assert" content="Checks that cross-domain iframe in multicol is correctly rendered">
<div style="columns: 2; height: 300px">
<div style="height: 100px"></div>
<div style="height: 100px"></div>
</div>
<script>
myframe.onload = () => {
requestAnimationFrame(() => {
requestAnimationFrame(() => {
document.documentElement.classList.remove('reftest-wait');
});
});
}
</script>
</html>