Open
Description
https://drafts.css-houdini.org/css-layout-api/#examples
The --ident
example has:
// Check if we have gone over the block fragmentation limit.
if (constraints.blockFragmentationType != 'none' &&
blockOffset > constraints.blockSize) {
break;
}
Should constraints.blockSize
be constraints.availableBlockSize
?