Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / gradient-stop-display-none-crash.svg
bloba572f704db91eb2be4ac99f54640fe3cc5ebc2a3
1 <svg xmlns="http://www.w3.org/2000/svg">
2 <script>
3 if (window.testRunner)
4 testRunner.dumpAsText();
5 </script>
6 <defs>
7 <linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="0%">
8 <stop offset="0%" style="stop-color: rgb(0,255,0); display: none;"/>
9 </linearGradient>
10 </defs>
11 <rect x="0" y="0" width="100" height="100" fill="url(#grad1)"/>
12 <text x="120" y="20">This test passes if there is no crash.</text>
13 </svg>