diff options
author | Matthias Reischenbacher <matthias@apache.org> | 2017-05-24 21:33:32 +0000 |
---|---|---|
committer | Matthias Reischenbacher <matthias@apache.org> | 2017-05-24 21:33:32 +0000 |
commit | 416bcd114ebfae2c8dec56baf8429ec16e9c2bdc (patch) | |
tree | 6193f49cd030dfd3973a70feb0c13fef10785f20 /fop/test | |
parent | aaadf92632a4317f2b9f8475c809a6aeb9cad6b5 (diff) | |
download | xmlgraphics-fop-416bcd114ebfae2c8dec56baf8429ec16e9c2bdc.tar.gz xmlgraphics-fop-416bcd114ebfae2c8dec56baf8429ec16e9c2bdc.zip |
FOP-2707: fix wrong bidi level, when creating new spans
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1796102 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'fop/test')
-rw-r--r-- | fop/test/layoutengine/standard-testcases/region-body_column-count_span_writing-mode_rl.xml | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/fop/test/layoutengine/standard-testcases/region-body_column-count_span_writing-mode_rl.xml b/fop/test/layoutengine/standard-testcases/region-body_column-count_span_writing-mode_rl.xml new file mode 100644 index 000000000..4b9f0cda7 --- /dev/null +++ b/fop/test/layoutengine/standard-testcases/region-body_column-count_span_writing-mode_rl.xml @@ -0,0 +1,47 @@ +<?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 multi-column documents with right-to-left writing mode. Normal multi-column document breaking over more than one page. + </p> + </info> + <fo> + <fo:root + xmlns:fo="http://www.w3.org/1999/XSL/Format" writing-mode="rl-tb"> + <fo:layout-master-set> + <fo:simple-page-master margin="20mm" master-name="odd" page-height="148mm" page-width="210mm"> + <fo:region-body column-count="3"/> + </fo:simple-page-master> + </fo:layout-master-set> + <fo:page-sequence master-reference="odd" writing-mode="rl-tb"> + <fo:flow flow-name="xsl-region-body"> + <fo:block span="all">Spanned Block</fo:block> + <fo:block>Col1</fo:block> + <fo:block break-before="column">Col2</fo:block> + <fo:block break-before="column">Col3</fo:block> + </fo:flow> + </fo:page-sequence> + </fo:root> + </fo> + <checks> + <eval expected="1" xpath="//pageViewport[@nr=1]/page/regionViewport/regionBody/mainReference/span[1]/@level"/> + <eval expected="1" xpath="//pageViewport[@nr=1]/page/regionViewport/regionBody/mainReference/span[2]/@level"/> + </checks> +</testcase> |