I have some document with text and tables with various height. The document has table in the end. I need to print this table and continue its borders to the bottom of the page. Is it possible? I use FOP 2.9
<fo:root text-align="center" font-family="Arial" font-size="20pt">
<fo:layout-master-set>
<fo:simple-page-master master-name="A4_1" margin="1cm" page-width="21cm" page-height="29.7cm">
<fo:region-body/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="A4_1">
<fo:flow flow-name="xsl-region-body">
<fo:table border="1px solid black">
<fo:table-column/>
<fo:table-body>
<fo:table-row>
<fo:table-cell border="1px solid black">
<fo:block>123</fo:block>
<fo:block>123</fo:block>
<fo:block>123</fo:block>
<fo:block>123</fo:block>
<fo:block>123</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
<fo:table border="1px solid red" height="100%">
<fo:table-column/>
<fo:table-column/>
<fo:table-body>
<fo:table-row height="100%">
<fo:table-cell border="1px solid red" block-progression-dimension.optimum="100%">
<fo:block>123</fo:block>
<fo:block>123</fo:block>
<fo:block>123</fo:block>
<fo:block>123</fo:block>
<fo:block>123</fo:block>
<fo:block>123</fo:block>
</fo:table-cell>
<fo:table-cell border="1px solid red" block-progression-dimension.optimum="100%">
<fo:block/>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
</fo:flow>
</fo:page-sequence>
</fo:root>