test_bug872812.html 915 B

123456789101112131415161718192021222324252627282930
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <!--
  4. https://bugzilla.mozilla.org/show_bug.cgi?id=872812
  5. -->
  6. <head>
  7. <title>Test for Bug 872812</title>
  8. <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.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=872812">Mozilla Bug 872812</a>
  13. <p id="display"></p>
  14. <div id="content" style="display: none"></div>
  15. <iframe id="svg" src="viewport-helper.svg"></iframe>
  16. <pre id="test">
  17. <script class="testbody" type="application/javascript">
  18. var svg = document.createElementNS("http://www.w3.org/2000/svg", 'svg');
  19. ok(svg, "SVG exists");
  20. var a = document.createEvent('CustomEvent').initCustomEvent('', '', '', svg.viewBox);
  21. ok(true, "CustomEvent exists and we are not crashed!");
  22. </script>
  23. </pre>
  24. </body>
  25. </html>