test_min.html 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <link rel="stylesheet" href="libs/qunit.css" type="text/css" media="screen" />
  5. </head>
  6. <body>
  7. <h1 id="qunit-header">QUnit example</h1>
  8. <h2 id="qunit-banner"></h2>
  9. <div id="qunit-testrunner-toolbar"></div>
  10. <h2 id="qunit-userAgent"></h2>
  11. <ol id="qunit-tests"></ol>
  12. <div id="qunit-fixture">test markup, will be hidden</div>
  13. <script src="../dist/jspdf.min.js"></script>
  14. <!-- this is a "toy" plugin and is NOT part of .min.js -->
  15. <script src="../jspdf.plugin.sillysvgrenderer.js"></script>
  16. <!-- addImage is part of .min.js
  17. <script src="../jspdf.plugin.addimage.js"></script>
  18. -->
  19. <script src="../examples/js/jquery/jquery-1.7.1.min.js"></script>
  20. <script src="libs/qunit.js"></script>
  21. <script type="text/javascript">
  22. curl = {
  23. baseUrl: './'
  24. // pluginPath: 'for/some/reason/plugins/r/here',
  25. , apiName: 'require'
  26. };
  27. </script>
  28. <script src="libs/curl-0.5.4.min.js"></script><!-- for loading things async in a simple way-->
  29. <script src="libs/custom_fill.js"></script><!-- has the "safe" log() and Curl.js's Text! plugin -->
  30. <!-- DID YOU LOSE US? The TESTS ARE HERE -->
  31. <script src="pdf_generate_tests.js"></script>
  32. </body>
  33. </html>