diff options
author | Peter Hancock <phancock@apache.org> | 2012-03-02 09:50:50 +0000 |
---|---|---|
committer | Peter Hancock <phancock@apache.org> | 2012-03-02 09:50:50 +0000 |
commit | 1b3cbf35aa190a90a885fed15a6a6b2652e0c9e5 (patch) | |
tree | 92e4a9246ab161ef08ee07778a72894667be9330 /test/layoutengine/standard-testcases/simple-page-master_unmapped_flow-name.xml | |
parent | b9f4f5f763b59007e188dcfd046c757e8dc1f1b9 (diff) | |
download | xmlgraphics-fop-1b3cbf35aa190a90a885fed15a6a6b2652e0c9e5.tar.gz xmlgraphics-fop-1b3cbf35aa190a90a885fed15a6a6b2652e0c9e5.zip |
Bugzilla#50391: Adding support for different flow-name of fo:region-body in FOP
Unit tests and a bugfix related to a repeatable sub-sequence specifier combo
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1296104 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/layoutengine/standard-testcases/simple-page-master_unmapped_flow-name.xml')
-rw-r--r-- | test/layoutengine/standard-testcases/simple-page-master_unmapped_flow-name.xml | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/simple-page-master_unmapped_flow-name.xml b/test/layoutengine/standard-testcases/simple-page-master_unmapped_flow-name.xml new file mode 100644 index 000000000..4e9cee353 --- /dev/null +++ b/test/layoutengine/standard-testcases/simple-page-master_unmapped_flow-name.xml @@ -0,0 +1,65 @@ +<?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 test checks that when the region-body@region-name of simple-page-master does not map to + the main flow, the PageSequenceLayoutManager treats the generated Page as an empty/blank page. + </p> + </info> + <fo> + <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <fo:layout-master-set> + <fo:simple-page-master master-name="main" page-width="2in" page-height="2in"> + <fo:region-body region-name="main" margin-top="1in"/> + <fo:region-before region-name="main-before"/> + </fo:simple-page-master> + <fo:simple-page-master master-name="empty" page-width="2in" page-height="2in"> + <fo:region-body region-name="empty"/> + <fo:region-before region-name="empty-before" /> + </fo:simple-page-master> + <fo:page-sequence-master master-name="psm"> + <fo:repeatable-page-master-reference maximum-repeats="1" master-reference="main"/> + <fo:repeatable-page-master-reference maximum-repeats="1" master-reference="empty"/> + <fo:repeatable-page-master-reference master-reference="main"/> + </fo:page-sequence-master> + </fo:layout-master-set> + <fo:page-sequence master-reference="psm"> + + <fo:static-content flow-name="main-before"> + <fo:block background-color="#afa">main <fo:page-number/></fo:block> + </fo:static-content> + + <fo:static-content flow-name="empty-before"> + <fo:block background-color="#faa">empty <fo:page-number/></fo:block> + </fo:static-content> + + <fo:flow flow-name="main"> + <fo:block break-before="page">flow 1</fo:block> + <fo:block break-before="page">flow 2</fo:block> + </fo:flow> + </fo:page-sequence> + </fo:root> + </fo> + <checks> + <eval expected="main-before" xpath="//pageViewport[1]//regionBefore/@name"/> + <eval expected="empty-before" xpath="//pageViewport[2]//regionBefore/@name"/> + <eval expected="main-before" xpath="//pageViewport[3]//regionBefore/@name"/> + </checks> +</testcase> |