test_SVGLengthList-2.xhtml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2. <!--
  3. https://bugzilla.mozilla.org/show_bug.cgi?id=630760
  4. -->
  5. <head>
  6. <title>Tests specific to SVGLengthList</title>
  7. <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  8. <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
  9. </head>
  10. <body>
  11. <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=515116">Mozilla Bug 630760</a>
  12. <p id="display"></p>
  13. <div id="content" style="display:none;">
  14. <svg id="svg" xmlns="http://www.w3.org/2000/svg" width="100" height="100">
  15. <text id="text">
  16. <set attributeName="x" to="10 20 30 40" begin="0" dur="indefinite"/>
  17. </text>
  18. </svg>
  19. </div>
  20. <pre id="test">
  21. <script class="testbody" type="text/javascript">
  22. <![CDATA[
  23. SimpleTest.waitForExplicitFinish();
  24. function run_tests()
  25. {
  26. var svg = document.getElementById('svg');
  27. svg.pauseAnimations();
  28. // Check that the animVal list for 'x' on <text> gives the correct number of
  29. // items when examined for the FIRST time DURING animation:
  30. var text = document.getElementById("text");
  31. var list = text.x.animVal;
  32. is(list.numberOfItems, 4, 'Checking numberOfItems');
  33. // Check that items at an index larger than 255 (max value for PRUint8) are
  34. // returning the correct values:
  35. var item;
  36. list = text.x.baseVal;
  37. for (var i = 0; i < 256; ++i) {
  38. item = svg.createSVGLength();
  39. item.value = 1;
  40. list.appendItem(item);
  41. }
  42. item = svg.createSVGLength();
  43. item.value = 2;
  44. list.appendItem(item);
  45. is(list.getItem(0).value, 1, 'Check value of first item');
  46. is(list.getItem(256).value, 2, 'Check value of item at index > 255');
  47. SimpleTest.finish();
  48. }
  49. window.addEventListener("load", run_tests, false);
  50. ]]>
  51. </script>
  52. </pre>
  53. </body>
  54. </html>