| OLD | NEW |
| (Empty) |
| 1 description("This tests getTotalLength of SVG path."); | |
| 2 | |
| 3 var pathElement = document.createElementNS("http://www.w3.org/2000/svg", "path")
; | |
| 4 | |
| 5 function getTotalLength(string) { | |
| 6 pathElement.setAttributeNS(null, "d", string); | |
| 7 | |
| 8 var point = pathElement.getTotalLength(); | |
| 9 return point; | |
| 10 } | |
| 11 | |
| 12 shouldBe("getTotalLength('M0,20 L400,20 L640,20')", "640"); | |
| 13 shouldBe("getTotalLength('M0,20 L400,20 L640,20 z')", "1280"); | |
| 14 shouldBe("getTotalLength('M0,20 L400,20 z M 320,20 L640,20')", "1120"); | |
| 15 | |
| 16 var successfullyParsed = true; | |
| OLD | NEW |