- From: Ian Kilpatrick via GitHub <sysbot+gh@w3.org>
- Date: Sun, 01 Jul 2018 23:05:14 +0000
- To: public-houdini-archive@w3.org
bfgeek has just created a new issue for https://github.com/w3c/css-houdini-drafts:
== [css-layout-api] Missing fragments and absolute children ==
```html
<div style="display: layout(foo);">
<div id=child1></div>
<div id=child2>
<div id=abspos></div>
</div>
</div>
```
```js
registerLayout('foo', class {
layout(children) {
const fragment1 = children[0].layoutNextFragment();
return {childFragments: [fragment1]};
}
});
```
What should be the behaviour of the abspos child?
Please view or discuss this issue at https://github.com/w3c/css-houdini-drafts/issues/775 using your GitHub account
Received on Sunday, 1 July 2018 23:05:16 UTC