| OLD | NEW |
| (Empty) |
| 1 <html xmlns="http://www.w3.org/1999/xhtml"> | |
| 2 <head> | |
| 3 <script>window.enablePixelTesting = true;</script> | |
| 4 <script src="../../resources/js-test.js"></script> | |
| 5 </head> | |
| 6 <body> | |
| 7 <svg id="svg" xmlns="http://www.w3.org/2000/svg" width="250" height="250"> | |
| 8 <g transform="translate(10, 10)"> | |
| 9 <path id="path1" d="M 0 0 L 100 0 L 100 100 z L 0 100" fill="green"/> | |
| 10 <path transform="translate(110, 0)" id="path2" d="M 0 0 h 100 z v 100 h
-100" fill="green"/> | |
| 11 </g> | |
| 12 </svg> | |
| 13 | |
| 14 <p id="description"></p> | |
| 15 <div id="console"></div> | |
| 16 <script type="text/javascript"> | |
| 17 <![CDATA[ | |
| 18 description("This is a test of the SVGPathSegList::removeItem() API."); | |
| 19 | |
| 20 var svg = document.getElementById("svg"); | |
| 21 var path1 = document.getElementById("path1"); | |
| 22 var path2 = document.getElementById("path2"); | |
| 23 | |
| 24 debug(""); | |
| 25 debug("Check initial 'pathSegList' value of path1"); | |
| 26 shouldBe("path1.pathSegList.numberOfItems", "5"); | |
| 27 shouldBeEqualToString("path1.pathSegList.getItem(0).toString()", "[object SV
GPathSegMovetoAbs]"); | |
| 28 shouldBe("path1.pathSegList.getItem(0).x", "0"); | |
| 29 shouldBe("path1.pathSegList.getItem(0).y", "0"); | |
| 30 shouldBeEqualToString("path1.pathSegList.getItem(1).toString()", "[object SV
GPathSegLinetoAbs]"); | |
| 31 shouldBe("path1.pathSegList.getItem(1).x", "100"); | |
| 32 shouldBe("path1.pathSegList.getItem(1).y", "0"); | |
| 33 shouldBeEqualToString("path1.pathSegList.getItem(2).toString()", "[object SV
GPathSegLinetoAbs]"); | |
| 34 shouldBe("path1.pathSegList.getItem(2).x", "100"); | |
| 35 shouldBe("path1.pathSegList.getItem(2).y", "100"); | |
| 36 shouldBeEqualToString("path1.pathSegList.getItem(3).toString()", "[object SV
GPathSegClosePath]"); | |
| 37 shouldBeEqualToString("path1.pathSegList.getItem(4).toString()", "[object SV
GPathSegLinetoAbs]"); | |
| 38 shouldBe("path1.pathSegList.getItem(4).x", "0"); | |
| 39 shouldBe("path1.pathSegList.getItem(4).y", "100"); | |
| 40 | |
| 41 debug(""); | |
| 42 debug("Check initial 'pathSegList' value of path2"); | |
| 43 shouldBe("path2.pathSegList.numberOfItems", "5"); | |
| 44 shouldBeEqualToString("path2.pathSegList.getItem(0).toString()", "[object SV
GPathSegMovetoAbs]"); | |
| 45 shouldBe("path2.pathSegList.getItem(0).x", "0"); | |
| 46 shouldBe("path2.pathSegList.getItem(0).y", "0"); | |
| 47 shouldBeEqualToString("path2.pathSegList.getItem(1).toString()", "[object SV
GPathSegLinetoHorizontalRel]"); | |
| 48 shouldBe("path2.pathSegList.getItem(1).x", "100"); | |
| 49 shouldBeEqualToString("path2.pathSegList.getItem(2).toString()", "[object SV
GPathSegClosePath]"); | |
| 50 shouldBeEqualToString("path2.pathSegList.getItem(3).toString()", "[object SV
GPathSegLinetoVerticalRel]"); | |
| 51 shouldBe("path2.pathSegList.getItem(3).y", "100"); | |
| 52 shouldBeEqualToString("path2.pathSegList.getItem(4).toString()", "[object SV
GPathSegLinetoHorizontalRel]"); | |
| 53 shouldBe("path2.pathSegList.getItem(4).x", "-100"); | |
| 54 | |
| 55 debug(""); | |
| 56 debug("Remove fourth item of path1"); | |
| 57 shouldBeEqualToString("path1.pathSegList.removeItem(3).toString()", "[object
SVGPathSegClosePath]"); | |
| 58 | |
| 59 debug(""); | |
| 60 debug("Remove third item of path2"); | |
| 61 shouldBeEqualToString("path2.pathSegList.removeItem(2).toString()", "[object
SVGPathSegClosePath]"); | |
| 62 | |
| 63 ]]> | |
| 64 </script> | |
| 65 </body> | |
| 66 </html> | |
| OLD | NEW |