Open
Description
<div style="display: layout(foo);">
<div id=child1></div>
<div id=child2>
<div id=abspos></div>
</div>
</div>
registerLayout('foo', class {
layout(children) {
const fragment1 = children[0].layoutNextFragment();
return {childFragments: [fragment1]};
}
});
What should be the behaviour of the abspos child?