summaryrefslogtreecommitdiffstats
path: root/layout/reftests/svg/filters/feComposite-operator-lighter.svg
blob: 74a969d1ba8c340f823bc02e24ecc837d87e7421 (plain)
1
2
3
4
5
6
7
8
9
10
11
<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg">
    <filter id="f" x="0" y="0" width="1" height="1" color-interpolation-filters="sRGB">
        <feFlood flood-color="red"/>
        <feComposite operator="lighter" in2="SourceGraphic"/>
    </filter>
    <linearGradient id="g2b" x1="0" x2="0" y1="0" y2="1">
        <stop offset="0" stop-color="#0f0"/>
        <stop offset="1" stop-color="#00f"/>
    </linearGradient>
    <rect width="200" height="200" fill="url(#g2b)" filter="url(#f)"/>
</svg>