OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <link rel="stylesheet" href="qunit.css"/> | 4 <link rel="stylesheet" href="qunit.css"/> |
5 | 5 |
6 <script src="jquery-1.7.1.min.js"></script> | |
7 <script src="qunit.js"></script> | 6 <script src="qunit.js"></script> |
8 <script src="common.js"></script> | 7 <script src="common.js"></script> |
9 | 8 |
10 <script> | 9 <script> |
11 var evalScript = function(source) | 10 var evalScript = function(source) |
12 { | 11 { |
13 return eval(source); | 12 return eval(source); |
14 }; | 13 }; |
15 var evalModule = function(source) | 14 var evalModule = function(source) |
16 { | 15 { |
(...skipping 30 matching lines...) Expand all Loading... |
47 </script> | 46 </script> |
48 </head> | 47 </head> |
49 <body> | 48 <body> |
50 <h1 id="qunit-header">Adblock Plus unit tests</h1> | 49 <h1 id="qunit-header">Adblock Plus unit tests</h1> |
51 <h2 id="qunit-banner"></h2> | 50 <h2 id="qunit-banner"></h2> |
52 <div id="qunit-testrunner-toolbar"></div> | 51 <div id="qunit-testrunner-toolbar"></div> |
53 <h2 id="qunit-userAgent"></h2> | 52 <h2 id="qunit-userAgent"></h2> |
54 <ol id="qunit-tests"></ol> | 53 <ol id="qunit-tests"></ol> |
55 </body> | 54 </body> |
56 </html> | 55 </html> |
OLD | NEW |