diff options
author | Matthias Reischenbacher <matthias@apache.org> | 2015-07-13 18:08:19 +0000 |
---|---|---|
committer | Matthias Reischenbacher <matthias@apache.org> | 2015-07-13 18:08:19 +0000 |
commit | b7446dd31c308015a1414d375beb221d566169e9 (patch) | |
tree | 0fc80bbca38e8f87bce497f3eed44699ea41df96 /test | |
parent | 4cd8159bff58dc23916041a733523f5bd35e7ffb (diff) | |
download | xmlgraphics-fop-b7446dd31c308015a1414d375beb221d566169e9.tar.gz xmlgraphics-fop-b7446dd31c308015a1414d375beb221d566169e9.zip |
FOP-2498: Fix "last" page master usage with force-page-count=end-on-even/-odd
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1690781 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test')
-rw-r--r-- | test/layoutengine/standard-testcases/page-sequence-force-page-count-end-on-even.xml | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/page-sequence-force-page-count-end-on-even.xml b/test/layoutengine/standard-testcases/page-sequence-force-page-count-end-on-even.xml new file mode 100644 index 000000000..42fa263d6 --- /dev/null +++ b/test/layoutengine/standard-testcases/page-sequence-force-page-count-end-on-even.xml @@ -0,0 +1,77 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You 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$ --> +<testcase> + <info> + <p> + This checks that when force-page-count=end-on-even that the last simple- + page-master is used when a single page overflows to a second + page and the page count is forced to end-on-even. + </p> + </info> + <fo> +<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <fo:layout-master-set> + <fo:simple-page-master margin="2cm" master-name="last" page-height="297mm" + page-width="210mm"> + <fo:region-body/> + <fo:region-after extent="22.5mm" region-name="after-last"/> + </fo:simple-page-master> + <fo:simple-page-master margin="2cm" master-name="any" page-height="297mm" + page-width="210mm"> + <fo:region-body/> + </fo:simple-page-master> + <fo:page-sequence-master master-name="master"> + <fo:repeatable-page-master-alternatives> + <fo:conditional-page-master-reference master-reference="last" odd-or-even="any" + page-position="last"/> + <fo:conditional-page-master-reference master-reference="any" odd-or-even="any" + page-position="any"/> + </fo:repeatable-page-master-alternatives> + </fo:page-sequence-master> + </fo:layout-master-set> + <fo:page-sequence force-page-count="end-on-odd" master-reference="master"> + <fo:static-content flow-name="after-last"> + <fo:block-container background-color="rgb(209,211,212)" height="22.5mm"> + <fo:block>Last-Page-3</fo:block> + </fo:block-container> + </fo:static-content> + <fo:flow flow-name="xsl-region-body"> + <fo:block>Page 1</fo:block> + <fo:block break-before="page">Page 2</fo:block> + </fo:flow> + </fo:page-sequence> + <fo:page-sequence force-page-count="end-on-odd" master-reference="master"> + <fo:static-content flow-name="after-last"> + <fo:block-container background-color="rgb(209,211,212)" height="22.5mm"> + <fo:block>Last-Page-5</fo:block> + </fo:block-container> + </fo:static-content> + <fo:flow flow-name="xsl-region-body"> + <fo:block>Page-4</fo:block> + </fo:flow> + </fo:page-sequence> +</fo:root> + + </fo> + <checks> + <eval expected="Last-Page-3" xpath="(//pageViewport)[3]//regionAfter//word"/> + <eval expected="Last-Page-5" xpath="(//pageViewport)[5]//regionAfter//word"/> + <eval expected="5" xpath="count(//pageViewport)"/> + </checks> +</testcase> |