test_markerOrient.xhtml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <!--
  3. https://bugzilla.mozilla.org/show_bug.cgi?id=892372
  4. -->
  5. <head>
  6. <title>Test for Bug 892372</title>
  7. <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  8. <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
  9. <script type="application/javascript">
  10. <![CDATA[
  11. /** Test for Bug 892372 **/
  12. SimpleTest.waitForExplicitFinish();
  13. function testAutoIsSet(marker) {
  14. is(marker.orientType.baseVal, SVGMarkerElement.SVG_MARKER_ORIENT_AUTO,
  15. "orientType baseVal for auto");
  16. is(marker.orientType.animVal, SVGMarkerElement.SVG_MARKER_ORIENT_AUTO,
  17. "orientType animVal for auto");
  18. is(marker.orientAngle.baseVal.value, 0, "orientAngle baseVal for auto");
  19. is(marker.orientAngle.animVal.value, 0, "orientAngle animVal for auto");
  20. }
  21. function testAutoStartReverseIsSet(marker) {
  22. is(marker.orientType.baseVal, SVGMarkerElement.SVG_MARKER_ORIENT_UNKNOWN,
  23. "orientType baseVal for auto-start-reverse");
  24. is(marker.orientType.animVal, SVGMarkerElement.SVG_MARKER_ORIENT_UNKNOWN,
  25. "orientType animVal for auto-start-reverse");
  26. is(marker.orientAngle.baseVal.value, 0,
  27. "orientAngle baseVal for auto-start-reverse");
  28. is(marker.orientAngle.animVal.value, 0,
  29. "orientAngle animVal for auto-start-reverse");
  30. }
  31. function testAngleIsSet(marker, angleVal) {
  32. is(marker.orientType.baseVal, SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE,
  33. "orientType baseVal after numeric angle is set");
  34. is(marker.orientType.animVal, SVGMarkerElement.SVG_MARKER_ORIENT_ANGLE,
  35. "orientType animVal after numeric angle is set");
  36. is(m.orientAngle.baseVal.value, angleVal,
  37. "orientAngle baseVal after numeric angle is set");
  38. is(m.orientAngle.animVal.value, angleVal,
  39. "orientAngle animVal after numeric angle is set");
  40. }
  41. function run()
  42. {
  43. var m = $("m");
  44. // Testing two conditions:
  45. // 1) If orient is set to a numeric angle and then set to auto or
  46. // auto-start-reverse, orientAngle should return a value of 0
  47. // 2) If orient is set to something of type other than
  48. // SVG_MARKER_ORIENT_ANGLE and then set to a numeric angle,
  49. // orientType should return SVG_MARKER_ORIENT_ANGLE
  50. // default is orient="0"
  51. testAngleIsSet(m, 0);
  52. m.setOrientToAuto();
  53. testAutoIsSet(m);
  54. // testing condition 2 for an angle set using setOrientToAngle
  55. var a = $("svg").createSVGAngle();
  56. a.newValueSpecifiedUnits(SVGAngle.SVG_ANGLETYPE_DEG, 90);
  57. m.setOrientToAngle(a);
  58. testAngleIsSet(m, a.value);
  59. // testing condition 1 for orient set using setOrientToAuto
  60. m.setOrientToAuto();
  61. testAutoIsSet(m);
  62. // testing condition 2 for an angle set using setAttribute
  63. m.setAttribute("orient", "180");
  64. testAngleIsSet(m, 180);
  65. // testing condition 1 for orient set to "auto" using setAttribute
  66. m.setAttribute("orient", "auto");
  67. testAutoIsSet(m);
  68. m.setAttribute("orient", "270");
  69. // testing condition 1 for orient set to "auto-start-reverse" using
  70. // setAttribute
  71. m.setAttribute("orient", "auto-start-reverse");
  72. testAutoStartReverseIsSet(m);
  73. SimpleTest.finish();
  74. }
  75. function runTestsWithPref() {
  76. SpecialPowers.pushPrefEnv({ 'set': [['svg.marker-improvements.enabled', true]] }, run);
  77. }
  78. window.addEventListener("load", runTestsWithPref, false);
  79. ]]>
  80. </script>
  81. </head>
  82. <body>
  83. <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=892372">Mozilla Bug 892372</a>
  84. <p id="display"></p>
  85. <div id="content" style="display: none">
  86. <svg xmlns="http://www.w3.org/2000/svg" id="svg">
  87. <defs>
  88. <marker id="m" />
  89. </defs>
  90. </svg>
  91. </div>
  92. <pre id="test">
  93. </pre>
  94. </body>
  95. </html>