Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Side by Side Diff: test/index.html

Issue 6253377650425856: WIP - Dictionary types implementation (Closed)
Patch Set: Created Jan. 9, 2015, 3:34 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/typedObjects/primitiveTypes.js ('k') | test/tests/typedObjects.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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> 6 <script>
7 var js17supported = false; 7 var js17supported = false;
8 </script> 8 </script>
9 <script type="text/javascript;version=1.7"> 9 <script type="text/javascript;version=1.7">
10 js17supported = true; 10 js17supported = true;
11 </script> 11 </script>
12 12
13 <script src="jquery-1.7.1.min.js"></script> 13 <script src="jquery-1.7.1.min.js"></script>
14 <script src="qunit.js"></script> 14 <script src="qunit.js"></script>
15 <script src="common.js"></script> 15 <script src="common.js"></script>
16 16
17 <script> 17 <script>
18 var libs = [ 18 var libs = [
19 "typedObjects/utils.js", 19 "typedObjects/utils.js",
20 "typedObjects/hash.js",
20 "typedObjects/arrayTypes.js", 21 "typedObjects/arrayTypes.js",
22 "typedObjects/dictionaryTypes.js",
21 "typedObjects/primitiveTypes.js", 23 "typedObjects/primitiveTypes.js",
22 "typedObjects/references.js", 24 "typedObjects/references.js",
23 "typedObjects/objectTypes.js", 25 "typedObjects/objectTypes.js",
24 "typedObjects/stringType.js", 26 "typedObjects/stringType.js",
25 "typedObjects.js" 27 "typedObjects.js"
26 ]; 28 ];
27 for (var i = 0; i < libs.length; i++) 29 for (var i = 0; i < libs.length; i++)
28 addScript("/lib/" + libs[i]); 30 addScript("/lib/" + libs[i]);
29 31
30 var tests = [ 32 var tests = [
31 "typedObjects.js" 33 "typedObjects.js"
32 ]; 34 ];
33 for (var i = 0; i < tests.length; i++) 35 for (var i = 0; i < tests.length; i++)
34 addScript("/tests/" + tests[i]); 36 addScript("/tests/" + tests[i]);
35 </script> 37 </script>
36 </head> 38 </head>
37 <body> 39 <body>
38 <h1 id="qunit-header">Adblock Plus unit tests</h1> 40 <h1 id="qunit-header">Adblock Plus unit tests</h1>
39 <h2 id="qunit-banner"></h2> 41 <h2 id="qunit-banner"></h2>
40 <div id="qunit-testrunner-toolbar"></div> 42 <div id="qunit-testrunner-toolbar"></div>
41 <h2 id="qunit-userAgent"></h2> 43 <h2 id="qunit-userAgent"></h2>
42 <ol id="qunit-tests"></ol> 44 <ol id="qunit-tests"></ol>
43 </body> 45 </body>
44 </html> 46 </html>
OLDNEW
« no previous file with comments | « lib/typedObjects/primitiveTypes.js ('k') | test/tests/typedObjects.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld