123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html>
- <head>
- <link rel="stylesheet" href="libs/qunit.css" type="text/css" media="screen" />
- </head>
- <body>
- <h1 id="qunit-header">QUnit example</h1>
- <h2 id="qunit-banner"></h2>
- <div id="qunit-testrunner-toolbar"></div>
- <h2 id="qunit-userAgent"></h2>
- <ol id="qunit-tests"></ol>
- <div id="qunit-fixture">test markup, will be hidden</div>
- <script src="../dist/jspdf.min.js"></script>
- <!-- this is a "toy" plugin and is NOT part of .min.js -->
- <script src="../jspdf.plugin.sillysvgrenderer.js"></script>
-
- <!-- addImage is part of .min.js
- <script src="../jspdf.plugin.addimage.js"></script>
- -->
- <script src="../examples/js/jquery/jquery-1.7.1.min.js"></script>
- <script src="libs/qunit.js"></script>
- <script type="text/javascript">
- curl = {
- baseUrl: './'
- // pluginPath: 'for/some/reason/plugins/r/here',
- , apiName: 'require'
- };
- </script>
- <script src="libs/curl-0.5.4.min.js"></script><!-- for loading things async in a simple way-->
- <script src="libs/custom_fill.js"></script><!-- has the "safe" log() and Curl.js's Text! plugin -->
- <!-- DID YOU LOSE US? The TESTS ARE HERE -->
- <script src="pdf_generate_tests.js"></script>
- </body>
- </html>
|