chromium/third_party/blink/web_tests/svg/custom/gradient-stop-display-none-crash.svg

<svg xmlns="http://www.w3.org/2000/svg">
    <script>
        if (window.testRunner)
            testRunner.dumpAsText();
    </script>
    <defs>
        <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
            <stop offset="0%" style="stop-color: rgb(0,255,0); display: none;"/>
        </linearGradient>
    </defs>
    <rect x="0" y="0" width="100" height="100" fill="url(#grad1)"/>
    <text x="120" y="20">This test passes if there is no crash.</text>
</svg>