blob: 3636f366547342a04253864016bf89ed392ea48a [file] [log] [blame]
registerLayout('test', class {
async intrinsicSizes() {}
async layout(children, edges, constraints, styleMap) {
if (constraints.fixedInlineSize !== 100)
return {autoBlockSize: 0};
return {autoBlockSize: 100};
}
});