Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/replaced-elements/embedded-content/cross-domain-iframe-in-multicol.sub.html - WPT Dashboard Interop Dashboard
<!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">
<link rel="help" href="https://html.spec.whatwg.org/multipage/rendering.html#embedded-content-rendering-rules">
<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>