aboutsummaryrefslogtreecommitdiffstats
path: root/test/layoutengine/standard-testcases/multi-switch_basic.xml
diff options
context:
space:
mode:
authorVincent Hennebert <vhennebert@apache.org>2014-04-18 19:34:46 +0000
committerVincent Hennebert <vhennebert@apache.org>2014-04-18 19:34:46 +0000
commitb37680209557f4dece0b25f5a4bf1594ab72194e (patch)
tree2efa0d46a2e54fba13fb0c41789a5a9b37eb89a8 /test/layoutengine/standard-testcases/multi-switch_basic.xml
parent8c3e6a5e1545f69560c17e9845d60e38c59bab72 (diff)
downloadxmlgraphics-fop-b37680209557f4dece0b25f5a4bf1594ab72194e.tar.gz
xmlgraphics-fop-b37680209557f4dece0b25f5a4bf1594ab72194e.zip
By default, only the first child of a multi-switch should be laid out
Patch by Seifeddine Dridi, applied with minor modifications git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/branches/Temp_WhitespaceManagement@1588548 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/layoutengine/standard-testcases/multi-switch_basic.xml')
-rw-r--r--test/layoutengine/standard-testcases/multi-switch_basic.xml61
1 files changed, 61 insertions, 0 deletions
diff --git a/test/layoutengine/standard-testcases/multi-switch_basic.xml b/test/layoutengine/standard-testcases/multi-switch_basic.xml
new file mode 100644
index 000000000..8f00d4179
--- /dev/null
+++ b/test/layoutengine/standard-testcases/multi-switch_basic.xml
@@ -0,0 +1,61 @@
+<?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.
+-->
+
+<testcase>
+ <info>
+ <p>
+ Test standard fo:multi-switch.
+ </p>
+ </info>
+ <fo>
+ <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:fox="http://xmlgraphics.apache.org/fop/extensions">
+ <fo:layout-master-set>
+ <fo:simple-page-master master-name="page" page-width="300pt" page-height="200pt" margin="10pt">
+ <fo:region-body/>
+ </fo:simple-page-master>
+ </fo:layout-master-set>
+ <fo:page-sequence master-reference="page">
+ <fo:flow flow-name="xsl-region-body">
+ <fo:block>Block 1</fo:block>
+ <fo:multi-switch>
+ <fo:multi-case>
+ <fo:block>MS1 multi-case</fo:block>
+ </fo:multi-case>
+ </fo:multi-switch>
+ <fo:block>Block 2</fo:block>
+ <fo:multi-switch>
+ <fo:multi-case>
+ <fo:block>MS2 multi-case 1</fo:block>
+ </fo:multi-case>
+ <fo:multi-case>
+ <fo:block>MS2 multi-case 2</fo:block>
+ </fo:multi-case>
+ </fo:multi-switch>
+ </fo:flow>
+ </fo:page-sequence>
+ </fo:root>
+ </fo>
+ <checks>
+ <eval expected="1" xpath="count(//pageSequence[1]/pageViewport)"/>
+ <eval expected="4" xpath="count(//pageSequence[1]/pageViewport[1]//flow/block)"/>
+ <eval expected="Block 1" xpath="//pageSequence[1]/pageViewport[1]//flow/block[1]"/>
+ <eval expected="MS1 multi-case" xpath="//pageSequence[1]/pageViewport[1]//flow/block[2]"/>
+ <eval expected="Block 2" xpath="//pageSequence[1]/pageViewport[1]//flow/block[3]"/>
+ <eval expected="MS2 multi-case 1" xpath="//pageSequence[1]/pageViewport[1]//flow/block[4]"/>
+ </checks>
+</testcase>