Browse Source

Bugzilla #50196: Add test for basic-link with padding.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1329865 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-1_1rc1old
Glenn Adams 12 years ago
parent
commit
b8f0ffa310
2 changed files with 49 additions and 0 deletions
  1. 4
    0
      status.xml
  2. 45
    0
      test/layoutengine/standard-testcases/basic-link_padding_bug50196.xml

+ 4
- 0
status.xml View File

@@ -53,6 +53,7 @@
<context id="Extensions" title="Changes to the Bundled Extensions"/>
<context id="Images" title="Changes to the Image Support"/>
<context id="Config" title="Changes to the User Configuration"/>
<context id="Test" title="Changes to unit tests or other test code"/>
</contexts>

<changes>
@@ -62,6 +63,9 @@
documents. Example: the fix of marks layering will be such a case when it's done.
-->
<release version="FOP Trunk" date="TBD">
<action context="Test" dev="GA" type="update" fixes-bug="50196" due-to="Matthias Reischenbacher">
Add test for basic-link with padding.
</action>
<action context="Code" dev="GA" type="update">
Improve property function argument parsing, specifically, better separate required, optional, and variable arguments and the handling of optional argument defaults.
Regularize property function class names.

+ 45
- 0
test/layoutengine/standard-testcases/basic-link_padding_bug50196.xml View File

@@ -0,0 +1,45 @@
<?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>
Bugzilla #50196: padding-start on basic-link causes exception
</p>
</info>
<fo>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master master-name="normal" page-width="210mm" page-height="297mm">
<fo:region-body margin="2cm"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="normal">
<fo:flow flow-name="xsl-region-body">
<fo:block>
<fo:basic-link padding-left="20pt" internal-destination="dest1"><fo:inline>test</fo:inline></fo:basic-link>
</fo:block>
<fo:block id="dest1"></fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
</fo>
<checks>
<eval expected="20000" xpath="//lineArea/inlineparent[@internal-link='(P1,dest1)']/@padding-start"/>
</checks>
</testcase>

Loading…
Cancel
Save