| <!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 that 'transparent' is treated as a valid color."); |
| createSVGTestCase(); |
| |
| // Setup test document |
| var rect = createSVGElement("rect"); |
| rect.setAttribute("id", "test"); |
| rect.setAttribute("width", "100px"); |
| rect.setAttribute("height", "100px"); |
| rect.setAttribute("fill", "#00FF00"); |
| rect.setAttribute("onclick", "executeTest()"); |
| |
| var animate = createSVGElement("animateColor"); |
| animate.setAttribute("id", "animation"); |
| animate.setAttribute("attributeName", "fill"); |
| animate.setAttribute("from", "transparent"); |
| animate.setAttribute("by", "red"); |
| animate.setAttribute("dur", "3s"); |
| animate.setAttribute("begin", "click"); |
| rect.appendChild(animate); |
| rootSVGElement.appendChild(rect); |
| |
| // Setup animation test |
| function expectTransparent() { |
| expectFillColor(rect, 0, 255, 0); |
| } |
| |
| function expectOtherColor() { |
| expectFillColor(rect, 127, 0, 0); |
| } |
| |
| function executeTest() { |
| const expectedValues = [ |
| // [animationId, time, sampleCallback] |
| ["animation", 0.0, expectTransparent], |
| ["animation", 1.5, expectOtherColor] |
| ]; |
| |
| runAnimationTest(expectedValues); |
| } |
| |
| var successfullyParsed = true; |
| |
| </script> |
| </body> |
| </html> |