blob: bd26f0e1db560d6d1247dfb71763683a345c11c8 [file] [log] [blame]
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20000802//EN"
"http://www.w3.org/TR/2000/CR-SVG-20000802/DTD/svg-20000802.dtd">
<!-- ========================================================================= -->
<!-- Copyright (C) The Apache Software Foundation. All rights reserved. -->
<!-- -->
<!-- This software is published under the terms of the Apache Software License -->
<!-- version 1.1, a copy of which has been included with this distribution in -->
<!-- the LICENSE file. -->
<!-- ========================================================================= -->
<!-- ========================================================================= -->
<!-- Error on rect -->
<!-- -->
<!-- @author tkormann@apache.org -->
<!-- @version $Id$ -->
<!-- ========================================================================= -->
<?xml-stylesheet type="text/css" href="test.css" ?>
<svg id="body" width="450" height="500" viewBox="0 0 450 500">
<title>Error: attribute "type" on &lt;feComponentTransfert> subelement is invalid</title>
<!-- ============================================================= -->
<!-- Batik sample mark -->
<!-- ============================================================= -->
<use xlink:href="./batikMark.svg#BatikTag" />
<!-- ============================================================= -->
<!-- Test content -->
<!-- ============================================================= -->
<g id="testContent">
<text x="225" y="40" class="title">
Error: attribute "type" on &lt;feComponentTransfert>
</text>
<text x="225" y="60" class="title">
subelement is invalid
</text>
<defs>
<filter id="good" filterUnits="objectBoundingBox"
x="0%" y="0%" width="100%" height="100%">
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
<feComponentTransfer filterUnits="objectBoundingBox"
x="0%" y="0%" width="100%" height="100%" >
<feFuncR type="linear" slope="0" intercept="0" />
<feFuncG type="linear" slope="1" intercept="0" />
<feFuncB type="linear" slope="0" intercept="0" />
<feFuncA type="linear" slope="0" intercept="1" />
</feComponentTransfer>
</filter>
<filter id="bad" filterUnits="objectBoundingBox"
x="0%" y="0%" width="100%" height="100%">
<feTurbulence type="turbulence" baseFrequency="0.05" numOctaves="2"/>
<feComponentTransfer filterUnits="objectBoundingBox"
x="0%" y="0%" width="100%" height="100%" >
<feFuncR type="linearX" slope="0" intercept="0" />
<feFuncG type="linear" slope="1" intercept="0" />
<feFuncB type="linear" slope="0" intercept="0" />
<feFuncA type="linear" slope="0" intercept="1" />
</feComponentTransfer>
</filter>
</defs>
<text x="225" y="240" class="legend">A filtered rectangle using &lt;feComponentTransfert></text>
<text x="225" y="440" class="legend">
A filtered rectangle using &lt;feComponentTranfert>.
</text>
<text x="225" y="454" class="legend">
The attribute "type" of a subelement is invalid
</text>
<rect x="175" y="100" width="100" height="100" style="filter:url(#good)"/>
<rect x="175" y="300" width="100" height="100" style="filter:url(#bad)"/>
</g>
</svg>