gecko-dev/layout/base/crashtests/1506204.html
Ting-Yu Lin 9ca1f4544a Bug 1506204 - Check the in flow frame to determine when to reframe the multicol container. r=dbaron
When removing an out of flow frame under a multicol subtree, it shouldn't affect
the multicol tree structure. We should instead check the in flow frame's
relationship with the multicol subtree.

Differential Revision: https://phabricator.services.mozilla.com/D11540

--HG--
extra : moz-landing-system : lando
2018-11-18 00:11:55 +00:00

18 lines
205 B
HTML

<head id="a">
<style>
* {
column-count: 1
}
.x {
position: fixed;
column-span: all;
}
</style>
<script>
function go() {
a.appendChild(b);
}
</script>
<body onload=go()>
<ol id="b" class="x">A</ol>