switch-animation-02.html (740B)
1 <!doctype html> 2 <html class="reftest-wait"> 3 <title>Test animation as children of switch elements</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 document.getElementsByTagName('svg')[0].setCurrentTime(2); 10 waitForAtLeastOneFrame().then(takeScreenshot); 11 } 12 </script> 13 <svg onload="test()"> 14 <switch> 15 <g systemLanguage="x-xl"> 16 <set xlink:href="#test" attributeName="width" begin="2s" to="0" /> 17 </g> 18 <g> 19 <set xlink:href="#test" attributeName="height" begin="2s" to="100" /> 20 </g> 21 </switch> 22 <rect id="test" width="100" height="0" fill="green"/> 23 </svg>