12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!DOCTYPE html>
- <!--
- /*
- * jQuery File Upload Test
- * https://github.com/blueimp/jQuery-File-Upload
- *
- * Copyright 2010, Sebastian Tschan
- * https://blueimp.net
- *
- * Licensed under the MIT license:
- * https://opensource.org/licenses/MIT
- */
- -->
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <title>jQuery File Upload Test</title>
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <link rel="stylesheet" href="vendor/mocha.css" />
- </head>
- <body>
- <div id="mocha"></div>
- <script src="vendor/mocha.js"></script>
- <script src="vendor/chai.js"></script>
- <script>
- mocha.setup('bdd');
- </script>
- <script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
- <script src="https://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
- <script
- src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"
- integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ"
- crossorigin="anonymous"
- ></script>
- <script src="../js/vendor/jquery.ui.widget.js"></script>
- <script src="../js/jquery.iframe-transport.js"></script>
- <script src="../js/jquery.fileupload.js"></script>
- <script src="../js/jquery.fileupload-process.js"></script>
- <script src="../js/jquery.fileupload-image.js"></script>
- <script src="../js/jquery.fileupload-audio.js"></script>
- <script src="../js/jquery.fileupload-video.js"></script>
- <script src="../js/jquery.fileupload-validate.js"></script>
- <script src="unit.js"></script>
- <script>
- mocha.checkLeaks();
- mocha.run();
- </script>
- </body>
- </html>
|