You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-dev@xmlgraphics.apache.org by bu...@apache.org on 2007/08/17 00:24:26 UTC

DO NOT REPLY [Bug 42049] - RTF tables ignore margin-left of containing block

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=42049>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=42049





------- Additional Comments From vschappert@bloomberg.net  2007-08-16 15:24 -------
An additional point: there is a general bug in the entire FOP processor in which
indent properties are being passed to the children of tables.  In PDF, this
manifests itself by a rightward shifting of the table cells out of the content
area of the table itself.  In RTF, this means that even though the table is
incorrectly NOT indented by its start-indent figure, the cells inside it ARE
indented!  This is the opposite of what should happen.  Try the following fo
snippet under RTF and PDF.  Using Altsoft's free XSL-FO Debugger, you can see
how things should be.

<fo:table table-layout="fixed" width="50%">
    <fo:table-column width="50%"/>
    <fo:table-column width="50%"/>
    <fo:table-body>
        <fo:table-row>
            <fo:table-cell><fo:block>XXX</fo:block></fo:table-cell>
            <fo:table-cell><fo:block>YYY</fo:block></fo:table-cell>
        </fo:table-row>
    </fo:table-body>
</fo:table>


-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.