diff options
author | Simon Steiner <ssteiner@apache.org> | 2018-10-23 11:56:21 +0000 |
---|---|---|
committer | Simon Steiner <ssteiner@apache.org> | 2018-10-23 11:56:21 +0000 |
commit | 6066ae5d664b120eb321ffa5dd9da1c06595d083 (patch) | |
tree | 4f54669dccae02c2570b0b8fdf9313b0569a665b /fop/test/layoutengine/standard-testcases | |
parent | 7951774f1754564fb27f775ce3eccbdf71e3e062 (diff) | |
download | xmlgraphics-fop-6066ae5d664b120eb321ffa5dd9da1c06595d083.tar.gz xmlgraphics-fop-6066ae5d664b120eb321ffa5dd9da1c06595d083.zip |
FOP-2823: page-index-relative not added when forwards link used to same location
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1844636 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'fop/test/layoutengine/standard-testcases')
-rw-r--r-- | fop/test/layoutengine/standard-testcases/basic-link_internal-desination-forwards-backwards.xml | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/fop/test/layoutengine/standard-testcases/basic-link_internal-desination-forwards-backwards.xml b/fop/test/layoutengine/standard-testcases/basic-link_internal-desination-forwards-backwards.xml new file mode 100644 index 000000000..3ce8d45ec --- /dev/null +++ b/fop/test/layoutengine/standard-testcases/basic-link_internal-desination-forwards-backwards.xml @@ -0,0 +1,54 @@ +<?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 a same page internal-destination on a fo:basic-link which references a prior block. + </p> + </info> + <fo> + <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format"> + <fo:layout-master-set> + <fo:simple-page-master margin-right="1cm" margin-left="1cm" margin-bottom="0.3cm" margin-top="1cm" page-width="21cm" page-height="29.7cm" master-name="all"> + <fo:region-body/> + </fo:simple-page-master> + </fo:layout-master-set> + <fo:page-sequence format="1" id="th_default_sequence1" master-reference="all"> + <fo:flow flow-name="xsl-region-body"> + <fo:block> + <fo:block> + <fo:basic-link internal-destination="N1004A">1 Cross-references </fo:basic-link> + </fo:block> + <fo:block id="N1004A"> + <fo:block id="c1001"/>1 Cross-references</fo:block> + <fo:block break-before="page"> + <fo:basic-link color="blue" internal-destination="c1001">STATIC SECTION 1 reference </fo:basic-link> + </fo:block> + </fo:block> + </fo:flow> + </fo:page-sequence> + </fo:root> + </fo> + <if-checks xmlns:if="http://xmlgraphics.apache.org/fop/intermediate" xmlns:n="http://xmlgraphics.apache.org/fop/intermediate/document-navigation"> + <eval expected="0" xpath="//if:page[@index=0]/if:page-trailer/n:link/n:goto-xy/@page-index"/> + <eval expected="" xpath="//if:page[@index=0]/if:page-trailer/n:link/n:goto-xy/@page-index-relative"/> + <eval expected="0" xpath="//if:page[@index=1]/if:page-trailer/n:link/n:goto-xy/@page-index"/> + <eval expected="-1" xpath="//if:page[@index=1]/if:page-trailer/n:link/n:goto-xy/@page-index-relative"/> + </if-checks> +</testcase> |