OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <!-- | 3 <!-- |
4 - This Source Code Form is subject to the terms of the Mozilla Public | 4 - This Source Code Form is subject to the terms of the Mozilla Public |
5 - License, v. 2.0. If a copy of the MPL was not distributed with this | 5 - License, v. 2.0. If a copy of the MPL was not distributed with this |
6 - file, You can obtain one at http://mozilla.org/MPL/2.0/. | 6 - file, You can obtain one at http://mozilla.org/MPL/2.0/. |
7 --> | 7 --> |
8 | 8 |
9 <html> | 9 <html> |
10 <head> | 10 <head> |
11 <meta charset="utf-8" /> | 11 <meta charset="utf-8" /> |
12 <link rel="stylesheet" href="qunit.css" /> | 12 <link rel="stylesheet" href="qunit.css" /> |
13 <script src="qunit.js"></script> | 13 <script src="qunit.js"></script> |
14 <script src="../ext/common.js"></script> | 14 <script src="../ext/common.js"></script> |
15 <script src="../ext/background.js"></script> | 15 <script src="../ext/background.js"></script> |
16 <script src="../lib/lz-string.js"></script> | 16 <script src="../lib/localforage.min.js"></script> |
17 <script src="../lib/compat.js"></script> | 17 <script src="../lib/compat.js"></script> |
18 <script src="../lib/info.js"></script> | 18 <script src="../lib/info.js"></script> |
19 <script src="../lib/adblockplus.js"></script> | 19 <script src="../lib/adblockplus.js"></script> |
20 <script src="../lib/publicSuffixList.js"></script> | 20 <script src="../lib/publicSuffixList.js"></script> |
21 <script src="../lib/sha1.js"></script> | 21 <script src="../lib/sha1.js"></script> |
22 <script src="../lib/jsbn.js"></script> | 22 <script src="../lib/jsbn.js"></script> |
23 <script src="../lib/rsa.js"></script> | 23 <script src="../lib/rsa.js"></script> |
24 <script src="common.js"></script> | 24 <script src="common.js"></script> |
25 <script src="tests/adblockplus.js"></script> | 25 <script src="tests/adblockplus.js"></script> |
26 <script src="tests/versionComparator.js"></script> | 26 <script src="tests/versionComparator.js"></script> |
27 <script src="tests/url.js"></script> | 27 <script src="tests/url.js"></script> |
28 <script src="tests/signatures.js"></script> | 28 <script src="tests/signatures.js"></script> |
29 <script src="tests/cssEscaping.js"></script> | 29 <script src="tests/cssEscaping.js"></script> |
30 </head> | 30 </head> |
31 <body> | 31 <body> |
32 <h1 id="qunit-header">adblockpluschrome unit tests</h1> | 32 <h1 id="qunit-header">adblockpluschrome unit tests</h1> |
33 <h2 id="qunit-banner"></h2> | 33 <h2 id="qunit-banner"></h2> |
34 <div id="qunit-testrunner-toolbar"></div> | 34 <div id="qunit-testrunner-toolbar"></div> |
35 <h2 id="qunit-userAgent"></h2> | 35 <h2 id="qunit-userAgent"></h2> |
36 <ol id="qunit-tests"></ol> | 36 <ol id="qunit-tests"></ol> |
37 </body> | 37 </body> |
38 </html> | 38 </html> |
OLD | NEW |