OLD | NEW |
1 <!doctype html> | 1 <!doctype html> |
2 <title>NodeIterator tests</title> | 2 <title>NodeIterator tests</title> |
3 <link rel="author" title="Aryeh Gregor" href=ayg@aryeh.name> | 3 <link rel="author" title="Aryeh Gregor" href=ayg@aryeh.name> |
4 <meta name=timeout content=long> | 4 <meta name=timeout content=long> |
5 <div id=log></div> | 5 <div id=log></div> |
6 <script src=../../../../resources/testharness.js></script> | 6 <script src=../../../../resources/testharness.js></script> |
7 <script src=../../../../resources/testharnessreport.js></script> | 7 <script src=../../../../resources/testharnessreport.js></script> |
8 <script src=../common.js></script> | 8 <script src=../common.js></script> |
9 <script> | 9 <script> |
10 "use strict"; | 10 "use strict"; |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
193 eval(testNodes[i]), eval(whatToShows[j]), eval(callbacks[k]) | 193 eval(testNodes[i]), eval(whatToShows[j]), eval(callbacks[k]) |
194 ]); | 194 ]); |
195 } | 195 } |
196 } | 196 } |
197 } | 197 } |
198 | 198 |
199 generate_tests(testIterator, tests); | 199 generate_tests(testIterator, tests); |
200 | 200 |
201 testDiv.style.display = "none"; | 201 testDiv.style.display = "none"; |
202 </script> | 202 </script> |
OLD | NEW |