You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by je...@apache.org on 2005/01/31 16:20:47 UTC

cvs commit: xml-fop/test/layoutengine/testcases table-row1.xml

jeremias    2005/01/31 07:20:47

  Modified:    test/layoutengine disabled-testcases.txt
  Added:       test/layoutengine/testcases table-row1.xml
  Log:
  Test for height and block-progression-dimension on table-row (disabled because it fails).
  
  Revision  Changes    Path
  1.5       +2 -1      xml-fop/test/layoutengine/disabled-testcases.txt
  
  Index: disabled-testcases.txt
  ===================================================================
  RCS file: /home/cvs/xml-fop/test/layoutengine/disabled-testcases.txt,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- disabled-testcases.txt	31 Jan 2005 14:53:57 -0000	1.4
  +++ disabled-testcases.txt	31 Jan 2005 15:20:46 -0000	1.5
  @@ -1,4 +1,5 @@
   breaks1.xml
   breaks2.xml
   table-column1.xml
  -table-column2.xml
  \ No newline at end of file
  +table-column2.xml
  +table-row1.xml
  \ No newline at end of file
  
  
  
  1.1                  xml-fop/test/layoutengine/testcases/table-row1.xml
  
  Index: table-row1.xml
  ===================================================================
  <?xml version="1.0" encoding="UTF-8"?>
  <!--
    Copyright 2005 The Apache Software Foundation
  
    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at
  
         http://www.apache.org/licenses/LICENSE-2.0
  
    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
  -->
  <!-- $Id: table-row1.xml,v 1.1 2005/01/31 15:20:47 jeremias Exp $ -->
  <testcase>
    <info>
      <p>
        This test checks tables, especially table-rows. This test: height and block-progression-dimension.
      </p>
    </info>
    <fo>
      <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:svg="http://www.w3.org/2000/svg">
        <fo:layout-master-set>
          <fo:simple-page-master master-name="normal" page-width="5in" page-height="5in">
            <fo:region-body/>
          </fo:simple-page-master>
        </fo:layout-master-set>
        <fo:page-sequence master-reference="normal" white-space-collapse="true">
          <fo:flow flow-name="xsl-region-body">
            <fo:table table-layout="fixed">
              <fo:table-column column-width="2in"/>
              <fo:table-column column-width="3in"/>
              <fo:table-body>
                <fo:table-row>
                  <fo:table-cell>
                    <fo:block>cell1</fo:block>
                  </fo:table-cell>
                  <fo:table-cell>
                    <fo:block>cell2</fo:block>
                  </fo:table-cell>
                </fo:table-row>
                <fo:table-row height="20pt" background-color="yellow">
                  <fo:table-cell>
                    <fo:block>cell3</fo:block>
                  </fo:table-cell>
                  <fo:table-cell>
                    <fo:block>cell4</fo:block>
                  </fo:table-cell>
                </fo:table-row>
                <fo:table-row block-progression-dimension="20pt" background-color="orange">
                  <fo:table-cell>
                    <fo:block>cell5</fo:block>
                  </fo:table-cell>
                  <fo:table-cell>
                    <fo:block>cell6</fo:block>
                  </fo:table-cell>
                </fo:table-row>
                <fo:table-row>
                  <fo:table-cell>
                    <fo:block>cell7</fo:block>
                  </fo:table-cell>
                  <fo:table-cell>
                    <fo:block>cell8</fo:block>
                  </fo:table-cell>
                </fo:table-row>
              </fo:table-body>
            </fo:table>
          </fo:flow>
        </fo:page-sequence>
      </fo:root>
    </fo>
    <checks>
      <!-- row 1 -->
      <eval expected="144000" xpath="//flow/block[1]/block[1]/@ipd"/>
      <eval expected="14400" xpath="//flow/block[1]/block[1]/@bpd"/>
      <eval expected="216000" xpath="//flow/block[1]/block[2]/@ipd"/>
      <eval expected="14400" xpath="//flow/block[1]/block[2]/@bpd"/>
  
      <!-- row 2 -->
      <eval expected="360000" xpath="//flow/block[1]/block[3]/@ipd"/>
      <eval expected="20000" xpath="//flow/block[1]/block[3]/@bpd"/> <!-- background-area generated for the row -->
      <eval expected="color=#ffff00,repeat=0,horiz=0,vertical=0" xpath="//flow/block[1]/block[3]/@background"/>
      <eval expected="144000" xpath="//flow/block[1]/block[4]/@ipd"/>
      <eval expected="20000" xpath="//flow/block[1]/block[4]/@bpd"/>
      <eval expected="216000" xpath="//flow/block[1]/block[5]/@ipd"/>
      <eval expected="20000" xpath="//flow/block[1]/block[5]/@bpd"/>
  
      <!-- row 3 -->
      <eval expected="360000" xpath="//flow/block[1]/block[6]/@ipd"/>
      <eval expected="20000" xpath="//flow/block[1]/block[6]/@bpd"/> <!-- background-area generated for the row -->
      <eval expected="color=#ffa500,repeat=0,horiz=0,vertical=0" xpath="//flow/block[1]/block[6]/@background"/>
      <eval expected="144000" xpath="//flow/block[1]/block[7]/@ipd"/>
      <eval expected="20000" xpath="//flow/block[1]/block[7]/@bpd"/>
      <eval expected="216000" xpath="//flow/block[1]/block[8]/@ipd"/>
      <eval expected="20000" xpath="//flow/block[1]/block[8]/@bpd"/>
  
      <!-- row 4 -->
      <eval expected="144000" xpath="//flow/block[1]/block[9]/@ipd"/>
      <eval expected="14400" xpath="//flow/block[1]/block[9]/@bpd"/>
      <eval expected="216000" xpath="//flow/block[1]/block[10]/@ipd"/>
      <eval expected="14400" xpath="//flow/block[1]/block[10]/@bpd"/>
    </checks>
  </testcase>
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-cvs-help@xml.apache.org