| <!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 animation on 'currentColor'."); |
| createSVGTestCase(); |
| |
| // Setup test document |
| var rect = createSVGElement("rect"); |
| rect.setAttribute("id", "rect"); |
| rect.setAttribute("width", "100px"); |
| rect.setAttribute("height", "100px"); |
| rect.setAttribute("fill", "currentColor"); |
| rect.setAttribute("color", "#d00000"); |
| rect.setAttribute("onclick", "executeTest()"); |
| |
| var animateColor = createSVGElement("animateColor"); |
| animateColor.setAttribute("id", "animateColor"); |
| animateColor.setAttribute("attributeName", "color"); |
| animateColor.setAttribute("from", "#d00000"); |
| animateColor.setAttribute("by", "#0000d0"); |
| animateColor.setAttribute("dur", "3s"); |
| animateColor.setAttribute("begin", "click"); |
| animateColor.setAttribute("fill", "freeze"); |
| rect.appendChild(animateColor); |
| rootSVGElement.appendChild(rect); |
| |
| // Setup animation test |
| function sample1() { |
| debug(""); |
| debug("Initial condition:"); |
| |
| expectFillColor(rect, 208, 0, 0); |
| } |
| |
| function sample2() { |
| debug(""); |
| debug("Half-time condition:"); |
| |
| expectFillColor(rect, 208, 0, 104); |
| } |
| |
| function sample3() { |
| debug(""); |
| debug("End condition:"); |
| |
| expectFillColor(rect, 208, 0, 208); |
| } |
| |
| function executeTest() { |
| const expectedValues = [ |
| // [animationId, time, sampleCallback] |
| ["animateColor", 0.0, sample1], |
| ["animateColor", 1.5, sample2], |
| ["animateColor", 3.0, sample3] |
| ]; |
| |
| runAnimationTest(expectedValues); |
| } |
| |
| var successfullyParsed = true; |
| </script> |
| </body> |
| </html> |