|
1 | | -<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
2 | | -<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr" id="html"> |
| 1 | +<!doctype html> |
| 2 | +<html lang="en" id="html"> |
3 | 3 | <head> |
4 | | - <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
5 | | - <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> |
| 4 | + <meta charset="utf-8"> |
6 | 5 | <title>jQuery Test Suite</title> |
7 | | - <link rel="Stylesheet" media="screen" href="../external/qunit/qunit.css" /> |
8 | | - <link rel="Stylesheet" media="screen" href="data/testsuite.css" /> |
9 | | - <!-- Includes --> |
| 6 | + <link rel="stylesheet" href="../external/qunit/qunit.css" /> |
| 7 | + <link rel="stylesheet" href="data/testsuite.css" /> |
10 | 8 |
|
11 | 9 | <!-- |
12 | | - We have to use previous jQuery to ensure testability with |
| 10 | + We have to use previous jQuery as helper to ensure testability with |
13 | 11 | ajax-free builds (and non-interference when changing ajax internals) |
14 | 12 | --> |
15 | 13 | <script src="data/jquery-1.9.1.js"></script> |
16 | 14 |
|
17 | 15 | <script src="../external/qunit/qunit.js"></script> |
18 | 16 | <script src="../external/requirejs/require.js"></script> |
19 | 17 | <script src="../external/sinon/fake_timers.js"></script> |
20 | | - <script src="../external/sinon/timers_ie.js"></script> |
21 | 18 | <!-- See testinit for the list of tests --> |
22 | 19 | <script src="data/testinit.js"></script> |
23 | 20 |
|
|
28 | 25 | <script src="jquery.js"></script> |
29 | 26 |
|
30 | 27 | <script> |
31 | | - // html5shiv, enabling HTML5 elements to be used with jQuery |
32 | | - ( "abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup " + |
33 | | - "mark meter nav output progress section summary time video" |
34 | | - ).replace(/\w+/g, function(n) { |
35 | | - document.createElement(n); |
36 | | - }); |
37 | | - |
38 | 28 | // Load tests if they have not been loaded |
39 | 29 | // This is in a different script tag to ensure that |
40 | 30 | // jQuery is on the page when the testrunner executes |
|
0 commit comments