blob: 401123dd5c7dc8d5132d7538026e6b5d0f9b26ed [file] [log] [blame]
<?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 the basics of fox:destination.
</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="normal" page-width="5in" page-height="5in">
<fo:region-body/>
</fo:simple-page-master>
</fo:layout-master-set>
<fox:destination internal-destination="chapter1"/>
<fox:destination internal-destination="chapter2"/>
<fox:destination internal-destination="chapter2-sec1"/>
<fo:page-sequence id="page-sequence" master-reference="normal">
<fo:flow flow-name="xsl-region-body">
<fo:block id="chapter1" font-weight="bold" font-size="larger">Chapter 1</fo:block>
<fo:block>Blah blah bla.</fo:block>
<fo:block id="chapter2" font-weight="bold" font-size="larger" break-before="page">Chapter 2</fo:block>
<fo:block>Blah blah bla.</fo:block>
<fo:block id="chapter2-sec1" font-weight="bold">Section 1</fo:block>
<fo:block>Blah blah bla.</fo:block>
<fo:block id="chapter2-sec2" font-weight="bold"><fox:destination internal-destination="chapter2-sec2"/>Section 2</fo:block>
<fo:block>Blah blah bla.</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
</fo>
<checks>
<eval expected="1" xpath="count(/areaTree/pageSequence)"/>
<eval expected="2" xpath="count(//pageViewport)"/>
<eval expected="4" xpath="count(//destination)"/>
<eval expected="(P1,chapter1)" xpath="//destination[1]/@internal-link"/>
<eval expected="(P2,chapter2)" xpath="//destination[2]/@internal-link"/>
<eval expected="(P2,chapter2-sec1)" xpath="//destination[3]/@internal-link"/>
<eval expected="(P2,chapter2-sec2)" xpath="//destination[4]/@internal-link"/>
</checks>
<if-checks xmlns:n="http://xmlgraphics.apache.org/fop/intermediate/document-navigation">
<eval expected="0" xpath="//n:named-destination[@name='chapter1']/n:goto-xy/@page-index"/>
<eval expected="0" xpath="//n:named-destination[@name='chapter1']/n:goto-xy/@x"/>
<eval expected="0" xpath="//n:named-destination[@name='chapter1']/n:goto-xy/@y"/>
<eval expected="1" xpath="//n:named-destination[@name='chapter2']/n:goto-xy/@page-index"/>
<eval expected="0" xpath="//n:named-destination[@name='chapter2']/n:goto-xy/@x"/>
<eval expected="0" xpath="//n:named-destination[@name='chapter2']/n:goto-xy/@y"/>
<eval expected="1" xpath="//n:named-destination[@name='chapter2-sec1']/n:goto-xy/@page-index"/>
<eval expected="0" xpath="//n:named-destination[@name='chapter2-sec1']/n:goto-xy/@x"/>
<eval expected="31680" xpath="//n:named-destination[@name='chapter2-sec1']/n:goto-xy/@y"/>
<eval expected="1" xpath="//n:named-destination[@name='chapter2-sec2']/n:goto-xy/@page-index"/>
<eval expected="0" xpath="//n:named-destination[@name='chapter2-sec2']/n:goto-xy/@x"/>
<eval expected="60480" xpath="//n:named-destination[@name='chapter2-sec2']/n:goto-xy/@y"/>
</if-checks>
</testcase>