Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html class="reftest-wait">
<title>Triply nested multicol. Change something in the outermost that doesn't affect the three innermost.</title>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<div style="columns:2; column-fill:auto; height:100px;">
<div id="touchme"></div>
<div style="columns:2; column-fill:auto; height:100px;">
<div style="columns:2; column-fill:auto; height:100px;">
<div style="columns:2; column-fill:auto; height:100px;">
x
</div>
</div>
</div>
</div>
<script>
requestAnimationFrame(()=> {
requestAnimationFrame(()=> {
touchme.style.width = "100px";
document.body.offsetTop;
document.documentElement.classList.remove("reftest-wait");
});
});
</script>