stop-animation-01.html (670B)
1 <!doctype html> 2 <html class="reftest-wait"> 3 <title>Animate a <stop> element</title> 4 <link rel="match" href="../struct/reftests/reference/green-100x100.html"> 5 <script src="/common/reftest-wait.js"></script> 6 <script src="/common/rendering-utils.js"></script> 7 <script> 8 function test() { 9 waitForAtLeastOneFrame().then(takeScreenshot); 10 } 11 </script> 12 <svg> 13 <linearGradient id="g"> 14 <stop stop-color="red"> 15 <animate attributeName="stop-color" values="red; green" dur="1s" 16 keyTimes="0; 0.01" fill="freeze" calcMode="discrete" 17 onbegin="test()"/> 18 </stop> 19 </linearGradient> 20 <rect width="100" height="100" fill="url(#g)"/> 21 </svg>