I would like to use fo:block-container
in my XSLT sheets and resulting XSL-FO. For instance, to change the orientation of a table:
<fo:block-container
reference-orientation="90"
break-before="page"
break-after="page">
<fo:table>
<!--Table content-->
</fo:table>
</fo:block-container>
Then, I apply FOP and generate a PDF from the XSL-FO.
The Apache FOP compliance page (http://xmlgraphics.apache.org/fop/compliance.html) says that FOP is only partially compliant in the case of fo:block-container
. Does anyone know which properties are not supported or how this is going to affect the resulting PDF?