OLD | NEW |
---|---|
1 description("Test SVGLengthAdjustType enumeration animations"); | 1 description("Test SVGLengthAdjustType enumeration animations"); |
2 createSVGTestCase(); | 2 createSVGTestCase(); |
3 | 3 |
4 var clickX = 1; | |
pdr.
2016/04/08 21:36:29
It looks like this is for SVGAnimationTestCase.js?
fs
2016/04/09 19:32:29
Done.
| |
5 | |
4 // Setup test document | 6 // Setup test document |
5 var text = createSVGElement("text"); | 7 var text = createSVGElement("text"); |
6 text.setAttribute("id", "text"); | 8 text.setAttribute("id", "text"); |
7 text.setAttribute("y", "50"); | 9 text.setAttribute("y", "50"); |
8 text.setAttribute("textLength", "200"); | 10 text.setAttribute("textLength", "200"); |
9 text.textContent = "Stretched text"; | 11 text.textContent = "Stretched text"; |
10 text.setAttribute("onclick", "executeTest()"); | 12 text.setAttribute("onclick", "executeTest()"); |
11 rootSVGElement.appendChild(text); | 13 rootSVGElement.appendChild(text); |
12 | 14 |
13 var animate = createSVGElement("animate"); | 15 var animate = createSVGElement("animate"); |
(...skipping 24 matching lines...) Expand all Loading... | |
38 ["animation", 1.999, sample1], | 40 ["animation", 1.999, sample1], |
39 ["animation", 2.001, sample2], | 41 ["animation", 2.001, sample2], |
40 ["animation", 3.999, sample2], | 42 ["animation", 3.999, sample2], |
41 ["animation", 4.001, sample2] | 43 ["animation", 4.001, sample2] |
42 ]; | 44 ]; |
43 | 45 |
44 runAnimationTest(expectedValues); | 46 runAnimationTest(expectedValues); |
45 } | 47 } |
46 | 48 |
47 var successfullyParsed = true; | 49 var successfullyParsed = true; |
OLD | NEW |