Source code

Revision control

Copy as Markdown

Other Tools

<!DOCTYPE html>
<!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. -->
<title>Canvas test: 2d.layer.ctm.filter</title>
<h1>2d.layer.ctm.filter</h1>
<p class="desc">Checks that parent transforms affect layer filters.</p>
width="200" height="200"
color-interpolation-filters="sRGB">
<filter id="filter" x="-100%" y="-100%" width="300%" height="300%">
<feDropShadow dx="5" dy="5" stdDeviation="0" flood-color="grey" />
</filter>
<g filter="url(#filter)">
<g transform="translate(30, 90) scale(2) rotate(90)">
<rect x="-30" y="-5" width=60 height=10></rect>
</g>
</g>
<g transform="translate(80, 90) scale(2) rotate(90)">
<g filter="url(#filter)">
<rect x="-30" y="-5" width=60 height=10></rect>
</g>
</g>
</svg>