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 2004/01/08 23:48:21 UTC

DO NOT REPLY [Bug 14122] - table cell overlaps in next cell when background-color is not specified

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

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=14122

table cell overlaps in next cell when background-color is not specified





------- Additional Comments From vesalainen@mermit.fi  2004-01-08 22:48 -------
Although it's definitely linked to acrobat (xpdf works fine), something must be
done with it.

Here's an other example. The row with FooProject has the problem (fubar is not
shown), but the row with BarProject does not

<?xml version="1.0" encoding="ISO-8859-1"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">

  <fo:layout-master-set>
    <fo:simple-page-master master-name="page" page-height="297mm"
page-width="210mm">
      <fo:region-body/>
    </fo:simple-page-master>
    <fo:page-sequence-master master-name="report">
      <fo:repeatable-page-master-alternatives>
        <fo:conditional-page-master-reference master-reference="page"/>
      </fo:repeatable-page-master-alternatives>
    </fo:page-sequence-master>
  </fo:layout-master-set>

  <fo:page-sequence master-reference="report">
    <fo:title>Report</fo:title>
    <fo:flow flow-name="xsl-region-body">
      <fo:table table-layout="fixed">
        <fo:table-column column-width="1cm"/>
        <fo:table-column column-width="2.5cm"/>
        <fo:table-column column-width="2.5cm"/>
        <fo:table-column column-width="6cm"/>
        <fo:table-column column-width="1cm"/>
        <fo:table-column column-width="1cm"/>

        <fo:table-body>
          <fo:table-row>
            <fo:table-cell number-columns-spanned="4">
              <fo:block font-size="9pt">
                FooProject
              </fo:block>
            </fo:table-cell>
            <fo:table-cell number-columns-spanned="2">
              <fo:block font-size="9pt">
                fubar
              </fo:block>
            </fo:table-cell>
          </fo:table-row>

          <fo:table-row>
            <fo:table-cell number-columns-spanned="4">
              <fo:block font-size="9pt">
                BarProject
              </fo:block>
            </fo:table-cell>
            <fo:table-cell number-columns-spanned="2">
              <fo:block font-size="9pt">
                fubar
              </fo:block>
            </fo:table-cell>
          </fo:table-row>
        </fo:table-body>
      </fo:table>
    </fo:flow>
  </fo:page-sequence>
</fo:root>