Hi, when I try to convert the following XSL-FO file to a PDF, I get a NullPointerException in TableLayoutManager.getNextKnuthElements() (tested with both the beta version and the current svn trunk version):
<fo:root xmlns:fo='http://www.w3.org/1999/XSL/Format'> <fo:layout-master-set> <fo:simple-page-master master-name='main' margin-top='36pt' margin-bottom='36pt' margin-right='72pt' page-width='8in' margin-left='72pt' page-height='11in'> <fo:region-body margin-top='90pt'/> </fo:simple-page-master> </fo:layout-master-set> <fo:page-sequence master-reference='main'> <fo:flow flow-name='xsl-region-body'> <fo:block font-size='14pt' line-height='17pt'> A table within a <fo:footnote> <fo:inline>footnote</fo:inline> <fo:footnote-body> <fo:block> <fo:table table-layout='fixed'> <fo:table-column column-width='100pt'/> <fo:table-body> <fo:table-row> <fo:table-cell> <fo:block> One cell shouldn't be too hard to render. </fo:block> </fo:table-cell> </fo:table-row> </fo:table-body> </fo:table> </fo:block> </fo:footnote-body> </fo:footnote> leads to problems </fo:block> </fo:flow> </fo:page-sequence> </fo:root> Regards, Holger Benl. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
