OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <svg> | |
3 <defs id="gl"> | |
4 <linearGradient id="g"> | |
5 <animateTransform/> | |
6 </linearGradient> | |
7 </defs> | |
8 <feFuncG id="f"> | |
9 <animate href="#g" attributeName="color" values="blue"> | |
10 </feFuncG> | |
11 </svg> | |
12 <script> | |
13 if (window.testRunner) { | |
14 testRunner.dumpAsText(); | |
15 testRunner.waitUntilDone(); | |
16 } | |
17 setTimeout(function() { | |
18 f.append(gl); | |
19 requestAnimationFrame(function() { | |
20 if (window.testRunner) | |
21 testRunner.notifyDone() | |
22 }); | |
23 }); | |
24 </script> | |
25 <p>PASS if no crash</p> | |
OLD | NEW |