]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
Showing a problem with SVG used inside a basic-link. The size of the link rect is...
authorJeremias Maerki <jeremias@apache.org>
Tue, 11 Jul 2006 08:13:05 +0000 (08:13 +0000)
committerJeremias Maerki <jeremias@apache.org>
Tue, 11 Jul 2006 08:13:05 +0000 (08:13 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@420759 13f79535-47bb-0310-9956-ffa450edef68

test/layoutengine/disabled-testcases.xml
test/layoutengine/standard-testcases/basic-link_external-destination_2.xml [new file with mode: 0644]

index f505f92a9029d39946a3a472d9dd083459c52cee..bc3a65a8fbc9af3a60658b5ec2e0d3e7d25e54f9 100644 (file)
 <!-- $Id$ -->
 <!--DOCTYPE disabled-testcases SYSTEM "disabled-testcases.dtd"-->
 <disabled-testcases>
+  <testcase>
+    <name>External link around an SVG not properly sized</name>
+    <file>basic-link_external-destination_2.xml</file>
+    <description>The bpd trait of the inlineparent area for the basic-link
+    is not sized correctly if it wraps an image that is higher than the 
+    nominal line.</description>
+  </testcase>
   <testcase>
     <name>Bugzilla #36391: reference-orientation</name>
     <file>block-container_reference-orientation_bug36391.xml</file>
diff --git a/test/layoutengine/standard-testcases/basic-link_external-destination_2.xml b/test/layoutengine/standard-testcases/basic-link_external-destination_2.xml
new file mode 100644 (file)
index 0000000..3de1525
--- /dev/null
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Copyright 2006 The Apache Software Foundation
+
+  Licensed 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 fo:basic-link with an external-destination wrapping an SVG graphic.
+    </p>
+  </info>
+  <fo>
+    <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:svg="http://www.w3.org/2000/svg">
+      <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>
+      <fo:page-sequence master-reference="normal">
+        <fo:flow flow-name="xsl-region-body">
+          <fo:block>before before before</fo:block>
+          <fo:block>
+            start
+            <fo:basic-link id="link" external-destination="http://xmlgraphics.apache.org/fop/"><fo:instream-foreign-object background-color="yellow">
+                <svg:svg width="2in" height="2in" viewBox="0 0 30 30">
+                  <svg:circle cx="15" cy="15" r="14" fill="#0000ff" stroke="none"/>
+                </svg:svg>
+              </fo:instream-foreign-object></fo:basic-link>
+            end
+          </fo:block>
+          <fo:block>after after after</fo:block>
+        </fo:flow>
+      </fo:page-sequence>
+    </fo:root>
+  </fo>
+  <checks>
+    <eval expected="192000" xpath="//inlineparent[@prod-id='link']/viewport/@ipd"/>
+    <eval expected="192000" xpath="//inlineparent[@prod-id='link']/viewport/@bpd"/>
+    
+    <eval expected="192000" xpath="//inlineparent[@prod-id='link']/@ipd"/>
+    <eval expected="192000" xpath="//inlineparent[@prod-id='link']/@bpd"/>
+  </checks>
+</testcase>