Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / svg / custom / use-animation-in-fill.html
blob62916365d886c68e4b289baffd2e8738b03fc1f9
1 <svg onload="runTest()">
2 <defs>
3 <g id="g">
4 <svg>
5 <linearGradient>
6 <animateTransform attributeName="a">
7 </linearGradient>
8 </svg>
9 </g>
10 </defs>
11 <use xlink:href="#g"></use>
12 </svg>
13 <script>
14 if (window.testRunner)
15 testRunner.dumpAsText();
17 function runTest() {
18 document.body.innerHTML = "PASS: Referenced animation does not trigger crash.";
20 </script>