| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <html> |
| <head> |
| <script src="../../resources/js-test-pre.js"></script> |
| <script src="../dynamic-updates/resources/SVGTestCase.js"></script> |
| <script src="resources/SVGAnimationTestCase.js"></script> |
| </head> |
| <body onload="runSMILTest()"> |
| <h1>SVG 1.1 dynamic animation tests</h1> |
| <p id="description"></p> |
| <div id="console"></div> |
| <script> |
| description("Tests end conditions are respected properly"); |
| createSVGTestCase(); |
| |
| // Setup test document |
| var rect = createSVGElement("rect"); |
| rect.setAttribute("id", "rect"); |
| rect.setAttribute("x", "100"); |
| rect.setAttribute("width", "100"); |
| rect.setAttribute("height", "100"); |
| rect.setAttribute("fill", "green"); |
| rect.setAttribute("onclick", "executeTest()"); |
| |
| var animate = createSVGElement("animate"); |
| animate.setAttribute("id", "animation"); |
| animate.setAttribute("attributeName", "x"); |
| animate.setAttribute("values", "0;300"); |
| animate.setAttribute("begin", "click"); |
| animate.setAttribute("dur", "3s"); |
| animate.setAttribute("end", "click+2s"); |
| animate.setAttribute("fill", "freeze"); |
| rect.appendChild(animate); |
| rootSVGElement.appendChild(rect); |
| |
| // Setup animation test |
| function sample1() { |
| shouldBeCloseEnough("rect.x.animVal.value", "100"); |
| shouldBe("rect.x.baseVal.value", "100"); |
| } |
| |
| function sample2() { |
| shouldBeCloseEnough("rect.x.animVal.value", "50"); |
| shouldBe("rect.x.baseVal.value", "100"); |
| } |
| |
| function sample3() { |
| shouldBeCloseEnough("rect.x.animVal.value", "200"); |
| shouldBe("rect.x.baseVal.value", "100"); |
| } |
| |
| function executeTest() { |
| const expectedValues = [ |
| // [animationId, time, sampleCallback] |
| ["animation", 0.0, sample1], |
| ["animation", 0.5, sample2], |
| ["animation", 2.0, sample3], |
| ["animation", 3.0, sample3] |
| ]; |
| |
| runAnimationTest(expectedValues); |
| } |
| |
| window.clickX = 150; |
| var successfullyParsed = true; |
| </script> |
| </body> |
| </html> |