I have a xsl-fo with block-containers that are absolute-positioned. Is there
a way to page break when the block contained within the block-container is
full (overflow).
Example:
<fo:flow flow-name="xsl-region-body">
<fo:block-container height="20mm" width="100mm" top="0mm" left="0mm"
position="absolute">
<fo:block font-size="12pt" text-align="left" font-weight="bold">
<!--when this reaches overflow break-after-->
<xsl:value-of select="foo"/>
</fo:block>
</fo:block-container>
<!--need page break here if above block is at overflow-->
</fo:flow>
Thanks,
Bill