test_SVGPointList.xhtml 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <!--
  3. https://bugzilla.mozilla.org/show_bug.cgi?id=629200
  4. -->
  5. <head>
  6. <title>Tests specific to SVGPointList</title>
  7. <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  8. <script type="text/javascript" src="MutationEventChecker.js"></script>
  9. <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  10. </head>
  11. <body>
  12. <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=629200">Mozilla Bug 629200</a>
  13. <p id="display"></p>
  14. <div id="content" style="display:none;">
  15. <svg id="svg" xmlns="http://www.w3.org/2000/svg" width="100" height="100">
  16. <polyline id="polyline" points="50,375 150,380"/>
  17. <polyline id="polyline2" points="10,20"/>
  18. </svg>
  19. </div>
  20. <pre id="test">
  21. <script class="testbody" type="text/javascript">
  22. <![CDATA[
  23. SimpleTest.waitForExplicitFinish();
  24. /*
  25. This file runs a series of SVGPointList specific tests. Generic SVGXxxList
  26. tests can be found in test_SVGxxxList.xhtml. Anything that can be generalized
  27. to other list types belongs there.
  28. */
  29. function run_tests()
  30. {
  31. document.getElementById('svg').pauseAnimations();
  32. var polyline = document.getElementById("polyline");
  33. var points = polyline.points;
  34. is(points.numberOfItems, 2, 'Checking numberOfItems');
  35. // Test mutation events
  36. // --- Initialization
  37. eventChecker = new MutationEventChecker;
  38. eventChecker.watchAttr(polyline, "points");
  39. // -- Actual changes
  40. eventChecker.expect("modify modify");
  41. points[0].x = 40;
  42. polyline.setAttribute("points", "30,375 150,380");
  43. // -- Redundant changes
  44. eventChecker.expect("");
  45. points[0].x = 30;
  46. points[1].y = 380;
  47. polyline.setAttribute("points", "30,375 150,380");
  48. // -- Invalid attribute
  49. eventChecker.expect("modify");
  50. polyline.setAttribute("points", ",30,375");
  51. is(points.numberOfItems, 0, 'Checking that parsing stops at invalid token');
  52. // -- Attribute removal
  53. eventChecker.expect("remove");
  54. polyline.removeAttribute("points");
  55. // -- Non-existent attribute removal
  56. eventChecker.expect("");
  57. polyline.removeAttribute("points");
  58. polyline.removeAttributeNS(null, "points");
  59. eventChecker.finish();
  60. // Test that the addition of an owned SVGPoint to an SVGPointList creates a
  61. // copy of the SVGPoint
  62. var polyline2 = document.getElementById("polyline2");
  63. var subtests = [
  64. function initialize(aItem) {
  65. polyline.removeAttribute("points");
  66. return points.initialize(aItem);
  67. },
  68. function insertItemBefore(aItem) {
  69. polyline.removeAttribute("points");
  70. return points.insertItemBefore(aItem, 0);
  71. },
  72. function replaceItem(aItem) {
  73. polyline.setAttribute("points", "10,20");
  74. return points.replaceItem(aItem, 0);
  75. },
  76. function appendItem(aItem) {
  77. polyline.removeAttribute("points");
  78. return points.appendItem(aItem);
  79. }
  80. ];
  81. subtests.forEach(function(aFunction) {
  82. // -- Adding SVGSVGElement.currentTranslate, which is the only instance
  83. // of an owned, single SVGPoint
  84. var svg = document.getElementById("svg");
  85. var name = aFunction.name;
  86. var existingItem = svg.currentTranslate;
  87. var newItem = aFunction(existingItem);
  88. is(newItem, points.getItem(0), name + " return value is correct when passed currentTranslate");
  89. isnot(newItem, existingItem, name + " made a copy when passed currentTranslate");
  90. is(newItem.value, existingItem.value, name + " made a copy with the right values when passed currentTranslate");
  91. todo(svg.currentTranslate == existingItem, name + " left the original object alone when passed currentTranslate");
  92. });
  93. subtests.forEach(function(aFunction) {
  94. // -- Adding an SVGPoint that is in a baseVal list
  95. var name = aFunction.name;
  96. var existingItem = polyline2.points.getItem(0);
  97. var newItem = aFunction(existingItem);
  98. is(newItem, points.getItem(0), name + " return value is correct when passed a baseVal list item");
  99. isnot(newItem, existingItem, name + " made a copy when passed a baseVal list item");
  100. is(newItem.value, existingItem.value, name + " made a copy with the right values when passed a baseVal list item");
  101. is(polyline2.points.getItem(0), existingItem, name + " left the original object alone when passed a baseVal list item");
  102. });
  103. subtests.forEach(function(aFunction) {
  104. // -- Adding an SVGPoint that is in a animVal list
  105. var name = aFunction.name;
  106. var existingItem = polyline2.animatedPoints.getItem(0);
  107. var newItem = aFunction(existingItem);
  108. is(newItem, points.getItem(0), name + " return value is correct when passed a animVal list item");
  109. isnot(newItem, existingItem, name + " made a copy when passed a animVal list item");
  110. is(newItem.value, existingItem.value, name + " made a copy with the right values when passed a animVal list item");
  111. is(polyline2.animatedPoints.getItem(0), existingItem, name + " left the original object alone when passed a animVal list item");
  112. });
  113. SimpleTest.finish();
  114. }
  115. window.addEventListener("load", run_tests, false);
  116. ]]>
  117. </script>
  118. </pre>
  119. </body>
  120. </html>