Hello Vincent, I think my testcase can be related with an existing bugzilla entry: https://issues.apache.org/bugzilla/show_bug.cgi?id=43416
Perhap's I should attach this file to the entry ? Patrice ----- Mail Original ----- De: "Vincent Hennebert" <[EMAIL PROTECTED]> À: [email protected] Envoyé: Lundi 1 Septembre 2008 17:11:19 GMT +01:00 Amsterdam / Berlin / Berne / Rome / Stockholm / Vienne Objet: Re: break-before in list-item-body: missing following content Hi Patrice, patrice rosnet wrote: > Hello > > I have a problem with a "break-before" in a list-item-body: > content following this attribute inside the list-item-body has disappeared > "continue2/2 end" It’s a bug in the code dealing with lists (for curious people: the element list for the content of the list-item-body is split at each forced break, but the list only retrieves the first part). Hopefully the list code will be revamped in the next release, but meanwhile you better use tables. You can achieve the same result with something like the following: <fo:table width="100%" table-layout="fixed"> <fo:table-column column-width="3cm"/> <fo:table-column column-width="100% - 3cm"/> <fo:table-body> <fo:table-row> <fo:table-cell><fo:block>label</fo:block></fo:table-cell> <fo:table-cell> <fo:block > <fo:block>body1</fo:block> <fo:block>continue1/2</fo:block> <fo:block break-before="column">continue2/2</fo:block> <fo:block>end</fo:block> </fo:block> </fo:table-cell> </fo:table-row> </fo:table-body> </fo:table> HTH, Vincent --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
