12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>ZeroClipboard.Core.js unit tests</title>
- <link rel="stylesheet" href="../../node_modules/qunitjs/qunit/qunit.css">
- <script src="../../node_modules/qunitjs/qunit/qunit.js"></script>
- <script>
- // Polyfill in future functionality: https://github.com/jquery/qunit/issues/490
- if (!QUnit.assert.expect) {
- QUnit.assert.expect = QUnit.expect;
- }
- // Require `expect` calls
- QUnit.config.requireExpects = true;
- // Prevent against Firefox/Firebug failing the global pollution check
- var getInterface = null;
- // Prevent against failing the global pollution check in all browsers other than IE
- if (typeof window.ActiveXObject === "undefined") {
- window.ActiveXObject = null;
- }
- // Prevent against Flash's ExternalInterface failing the global pollution check (seems to be only in IE < 11)
- var __flash__arrayToXML = null,
- __flash__argumentsToXML = null,
- __flash__objectToXML = null,
- __flash__escapeXML = null,
- __flash__toXML = null,
- __flash__addCallback = null,
- __flash__removeCallback = null,
- __flash__request = null;
- </script>
- <script src="../../dist/ZeroClipboard.Core.js"></script>
- <script src="../../node_modules/jquery/dist/jquery.js"></script>
- <script src="ZeroClipboard.Core.tests.js"></script>
- </head>
- <body>
- <div id="qunit"></div>
- <div id="qunit-fixture"></div>
- </body>
- </html>
|