animate-insert-no-begin.html (1560B)
1 <!doctype html> 2 <html> 3 <meta charset="utf-8"> 4 <title>Test behavior of dynamically inserting animate without begin attribute</title> 5 <script src="/resources/testharness.js"></script> 6 <script src="/resources/testharnessreport.js"></script> 7 <script src="/resources/SVGAnimationTestCase-testharness.js"></script> 8 9 <svg> 10 </svg> 11 12 <script> 13 var rootSVGElement = document.querySelector("svg"); 14 var epsilon = 1.0; 15 16 // Setup test document 17 var rect = createSVGElement("rect"); 18 rect.setAttribute("id", "rect"); 19 rect.setAttribute("x", "0"); 20 rect.setAttribute("y", "45"); 21 rect.setAttribute("width", "100"); 22 rect.setAttribute("height", "100"); 23 rect.setAttribute("fill", "green"); 24 25 var animate = createSVGElement("animate"); 26 animate.setAttribute("id", "animation"); 27 animate.setAttribute("attributeName", "x"); 28 animate.setAttribute("from", "0"); 29 animate.setAttribute("to", "90"); 30 animate.setAttribute("dur", "3s"); 31 animate.setAttribute("fill", "freeze"); 32 rect.appendChild(animate); 33 rootSVGElement.appendChild(rect); 34 35 // Setup animation test 36 function sample1() { 37 assert_approx_equals(rect.x.animVal.value, 0, epsilon); 38 assert_equals(rect.x.baseVal.value, 0); 39 } 40 41 function sample2() { 42 assert_approx_equals(rect.x.animVal.value, 90, epsilon); 43 assert_equals(rect.x.baseVal.value, 0); 44 } 45 46 smil_async_test((t) => { 47 const expectedValues = [ 48 // [animationId, time, sampleCallback] 49 ["animation", 0.0, sample1], 50 ["animation", 3.0, sample2] 51 ]; 52 53 runAnimationTest(t, expectedValues); 54 }); 55 56 window.animationStartsImmediately = true; 57 58 </script>