OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <!-- | 3 <!-- |
4 - This file is part of Adblock Plus <http://adblockplus.org/>, | 4 - This file is part of Adblock Plus <http://adblockplus.org/>, |
5 - Copyright (C) 2006-2013 Eyeo GmbH | 5 - Copyright (C) 2006-2013 Eyeo GmbH |
6 - | 6 - |
7 - Adblock Plus is free software: you can redistribute it and/or modify | 7 - Adblock Plus is free software: you can redistribute it and/or modify |
8 - it under the terms of the GNU General Public License version 3 as | 8 - it under the terms of the GNU General Public License version 3 as |
9 - published by the Free Software Foundation. | 9 - published by the Free Software Foundation. |
10 - | 10 - |
11 - Adblock Plus is distributed in the hope that it will be useful, | 11 - Adblock Plus is distributed in the hope that it will be useful, |
12 - but WITHOUT ANY WARRANTY; without even the implied warranty of | 12 - but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 13 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
14 - GNU General Public License for more details. | 14 - GNU General Public License for more details. |
15 - | 15 - |
16 - You should have received a copy of the GNU General Public License | 16 - You should have received a copy of the GNU General Public License |
17 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 17 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
18 --> | 18 --> |
19 | 19 |
20 <html> | 20 <html> |
21 <head> | 21 <head> |
22 <meta charset="utf-8"/> | 22 <meta charset="utf-8"/> |
23 <link rel="stylesheet" href="qunit.css"/> | 23 <link rel="stylesheet" href="qunit.css"/> |
24 <script src="../jquery-ui/js/jquery-1.7.1.min.js"></script> | 24 <script src="../jquery-ui/js/jquery-1.7.1.min.js"></script> |
25 <script src="qunit.js"></script> | 25 <script src="qunit.js"></script> |
| 26 <script src="../ext/common.js"></script> |
| 27 <script src="../ext/background.js"></script> |
26 <script src="../lib/compat.js"></script> | 28 <script src="../lib/compat.js"></script> |
27 <script src="../lib/info.js"></script> | 29 <script src="../lib/info.js"></script> |
28 <script src="../lib/io.js"></script> | 30 <script src="../lib/io.js"></script> |
29 <script src="../lib/adblockplus.js"></script> | 31 <script src="../lib/adblockplus.js"></script> |
30 <script src="../lib/publicSuffixList.js"></script> | 32 <script src="../lib/publicSuffixList.js"></script> |
31 <script src="../lib/punycode.js"></script> | 33 <script src="../lib/punycode.js"></script> |
32 <script src="../lib/basedomain.js"></script> | 34 <script src="../lib/basedomain.js"></script> |
33 <script src="../lib/sha1.js"></script> | 35 <script src="../lib/sha1.js"></script> |
34 <script src="../lib/jsbn.js"></script> | 36 <script src="../lib/jsbn.js"></script> |
35 <script src="../lib/rsa.js"></script> | 37 <script src="../lib/rsa.js"></script> |
36 <script src="../webrequest.js"></script> | 38 <script src="../webrequest.js"></script> |
37 <script src="common.js"></script> | 39 <script src="common.js"></script> |
38 <script src="tests/adblockplus.js"></script> | 40 <script src="tests/adblockplus.js"></script> |
39 <script src="tests/versionComparator.js"></script> | 41 <script src="tests/versionComparator.js"></script> |
40 <script src="tests/baseDomain.js"></script> | 42 <script src="tests/baseDomain.js"></script> |
41 <script src="tests/signatures.js"></script> | 43 <script src="tests/signatures.js"></script> |
42 </head> | 44 </head> |
43 <body> | 45 <body> |
44 <h1 id="qunit-header">Adblock Plus unit tests</h1> | 46 <h1 id="qunit-header">Adblock Plus unit tests</h1> |
45 <h2 id="qunit-banner"></h2> | 47 <h2 id="qunit-banner"></h2> |
46 <div id="qunit-testrunner-toolbar"></div> | 48 <div id="qunit-testrunner-toolbar"></div> |
47 <h2 id="qunit-userAgent"></h2> | 49 <h2 id="qunit-userAgent"></h2> |
48 <ol id="qunit-tests"></ol> | 50 <ol id="qunit-tests"></ol> |
49 </body> | 51 </body> |
50 </html> | 52 </html> |
OLD | NEW |