2 <html lang=
"en" id=
"html">
5 <title>jQuery Test Suite
</title>
6 <link rel=
"stylesheet" href=
"../external/qunit/qunit.css" />
7 <link rel=
"stylesheet" href=
"data/testsuite.css" />
10 We have to use previous jQuery as helper to ensure testability with
11 ajax-free builds (and non-interference when changing ajax internals)
13 <script src=
"data/jquery-1.9.1.js"></script>
15 <script src=
"../external/qunit/qunit.js"></script>
16 <script src=
"../external/qunit-assert-step/qunit-assert-step.js"></script>
17 <script src=
"../external/sinon/sinon.js"></script>
18 <script src=
"../external/npo/npo.js"></script>
19 <script src=
"../external/requirejs/require.js"></script>
20 <!-- See testinit for the list of tests -->
21 <script src=
"data/testinit.js"></script>
23 <!-- A script that includes jQuery min, dev, or AMD -->
24 <!-- Adds "basic" URL option, even to iframes -->
25 <!-- iframes will not load AMD as loading needs to be synchronous for some tests -->
26 <!-- Also executes the function above to load tests -->
27 <script src=
"jquery.js"></script>
30 // Load tests if they have not been loaded
31 // This is in a different script tag to ensure that
32 // jQuery is on the page when the testrunner executes
33 if ( !QUnit
.urlParams
.amd
) {
40 <div id=
"qunit"></div>
43 <!-- this iframe is outside the #qunit-fixture so it won't waste time by constantly reloading; the tests are "safe" and clean up after themselves -->
44 <iframe id=
"loadediframe" name=
"loadediframe" style=
"display:none;" src=
"data/iframe.html"></iframe>
45 <div id=
"qunit-fixture"></div>
46 <script src=
"data/qunit-fixture.js"></script>