aboutsummaryrefslogtreecommitdiffstats
path: root/test/xml
diff options
context:
space:
mode:
authorVincent Hennebert <vhennebert@apache.org>2014-03-14 10:44:23 +0000
committerVincent Hennebert <vhennebert@apache.org>2014-03-14 10:44:23 +0000
commit4c131bd42f52e394b4c6220a3af179cb4539bf40 (patch)
treea5abb4df2edda095317f825c276e863b8a1d081b /test/xml
parent28b4b3d4de6106f807de5836683c82c453d58b9e (diff)
downloadxmlgraphics-fop-4c131bd42f52e394b4c6220a3af179cb4539bf40.tar.gz
xmlgraphics-fop-4c131bd42f52e394b4c6220a3af179cb4539bf40.zip
FOP-2357: When an SVG image has transparency and a PDF profile is used that disallows it, ignore it and issue a warning rather than throw an error
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1577477 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'test/xml')
-rw-r--r--test/xml/pdf-a/svg-transparency.fo24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/xml/pdf-a/svg-transparency.fo b/test/xml/pdf-a/svg-transparency.fo
new file mode 100644
index 000000000..922416fbc
--- /dev/null
+++ b/test/xml/pdf-a/svg-transparency.fo
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format" font-family="Gladiator">
+ <fo:layout-master-set>
+ <fo:simple-page-master master-name="page"
+ page-height="420pt" page-width="620pt" margin="10pt">
+ <fo:region-body display-align="center"/>
+ </fo:simple-page-master>
+ </fo:layout-master-set>
+ <fo:page-sequence master-reference="page">
+ <fo:flow flow-name="xsl-region-body" text-align="center">
+ <fo:block font-size="20pt">RGB Circles</fo:block>
+ <fo:block><fo:instream-foreign-object>
+ <svg xmlns="http://www.w3.org/2000/svg" width="300" height="286.6">
+ <g style="fill-opacity:0.7; stroke:black; stroke-width:3"
+ transform="translate(0, 286.6) scale(1, -1) translate(100, 100)">
+ <circle cx="50" cy="86.6" r="80" style="fill:red;"/>
+ <circle cx="0" cy="0" r="80" style="fill:green;"/>
+ <circle cx="100" cy="0" r="80" style="fill:blue;"/>
+ </g>
+ </svg>
+ </fo:instream-foreign-object></fo:block>
+ </fo:flow>
+ </fo:page-sequence>
+</fo:root>