chromium/third_party/blink/web_tests/svg/filters/feComposite-arithmetic-invalid-rgba-expected.svg

<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="100">
    <!-- Due to Bug 80321, we need to use a filter in this expected result reference. -->
    <defs>
        <!-- This filter produces the same as the input, but does color conversions along the way. -->
        <filter id="identity">
            <feComposite operator="arithmetic" in="SourceGraphic" in2="SourceGraphic" k1="0" k2="1.0" k3="0" k4="0" />
        </filter>
    </defs>

    <!-- Background for color comparison. The border of the final rectangle should be the same as the interior color. -->
    <rect x="20" y="20" width="60" height="60" fill="rgba(0,255,0,1)" />

    <!-- The content of interest -->
    <rect filter="url(#identity)" x="25" y="25" width="50" height="50" fill="rgba(0,255,0,1)" stroke="none" />

    <!-- Border to show expected non-drawing area. -->
    <rect x="125" y="25" width="50" height="50" fill="none" stroke="rgb(0,255,0)" />
</svg>