| <!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 SVGAngle animation from grad to rad."); |
| createSVGTestCase(); |
| |
| // Setup test document |
| var defs = createSVGElement("defs"); |
| |
| var marker = createSVGElement("marker"); |
| marker.setAttribute("id", "marker"); |
| marker.setAttribute("viewBox", "0 0 10 10"); |
| marker.setAttribute("markerWidth", "4"); |
| marker.setAttribute("markerHeight", "3"); |
| marker.setAttribute("markerUnits", "strokeWidth"); |
| marker.setAttribute("refX", "1"); |
| marker.setAttribute("refY", "5"); |
| marker.setAttribute("orient", "0deg"); |
| defs.appendChild(marker); |
| |
| var polyline = createSVGElement("polyline"); |
| polyline.setAttribute("id", "polyline"); |
| polyline.setAttribute("points", "0,0 10,5 0,10 1,5"); |
| polyline.setAttribute("fill", "green"); |
| marker.appendChild(polyline); |
| |
| var path = createSVGElement("path"); |
| path.setAttribute("id", "path"); |
| path.setAttribute("d", "M45,50 L55,50"); |
| path.setAttribute("stroke-width","10"); |
| path.setAttribute("stroke", "green"); |
| path.setAttribute("marker-end", "url(#marker)"); |
| path.setAttribute("onclick", "executeTest()"); |
| |
| var animate = createSVGElement("animate"); |
| animate.setAttribute("id", "animation"); |
| animate.setAttribute("attributeName", "orient"); |
| animate.setAttribute("begin", "path.click"); |
| animate.setAttribute("dur", "4s"); |
| animate.setAttribute("from", "0grad"); |
| animate.setAttribute("to", "3.14159265rad"); |
| marker.appendChild(animate); |
| rootSVGElement.appendChild(defs); |
| rootSVGElement.appendChild(path); |
| |
| // Setup animation test |
| function sample1() { |
| // Check initial/end conditions |
| shouldBeCloseEnough("marker.orientAngle.animVal.value", "0"); |
| shouldBe("marker.orientAngle.baseVal.value", "0"); |
| |
| shouldBe("marker.orientType.animVal", "SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE"); |
| shouldBe("marker.orientType.baseVal", "SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE"); |
| } |
| |
| function sample2() { |
| shouldBeCloseEnough("marker.orientAngle.animVal.value", "90"); |
| shouldBe("marker.orientAngle.baseVal.value", "0"); |
| |
| shouldBe("marker.orientType.animVal", "SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE"); |
| shouldBe("marker.orientType.baseVal", "SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE"); |
| } |
| |
| function sample3() { |
| shouldBeCloseEnough("marker.orientAngle.animVal.value", "180"); |
| shouldBe("marker.orientAngle.baseVal.value", "0"); |
| |
| shouldBe("marker.orientType.animVal", "SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE"); |
| shouldBe("marker.orientType.baseVal", "SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE"); |
| } |
| |
| function executeTest() { |
| const expectedValues = [ |
| // [animationId, time, sampleCallback] |
| ["animation", 0.0, sample1], |
| ["animation", 2.0, sample2], |
| ["animation", 3.999, sample3], |
| ["animation", 4.001, sample1] |
| ]; |
| |
| runAnimationTest(expectedValues); |
| } |
| |
| var successfullyParsed = true; |
| </script> |
| </body> |
| </html> |