OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <!-- TODO(arv): Check in Closure unit tests and make this run as part of the | 4 <!-- TODO(arv): Check in Closure unit tests and make this run as part of the |
5 tests --> | 5 tests --> |
6 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | |
Dan Beam
2014/12/10 19:49:24
why does this page need this?
xdai1
2014/12/11 02:59:21
I'm not sure if it's needed. If it's not necessary
| |
6 <script src="https://cdn.rawgit.com/google/closure-library/master/closure/goog/b ase.js"></script> | 7 <script src="https://cdn.rawgit.com/google/closure-library/master/closure/goog/b ase.js"></script> |
7 <script src="../../../../../ui/webui/resources/js/cr.js"></script> | 8 <script src="../../../../../ui/webui/resources/js/cr.js"></script> |
8 <script src="bmm.js"></script> | 9 <script src="bmm.js"></script> |
9 <title>Bookmark Manager Loading Test</title> | 10 <title>Bookmark Manager Loading Test</title> |
10 <script> | 11 <script> |
11 | 12 |
12 goog.require('goog.testing.jsunit'); | 13 goog.require('goog.testing.jsunit'); |
13 goog.require('goog.testing.AsyncTestCase'); | 14 goog.require('goog.testing.AsyncTestCase'); |
14 | 15 |
15 </script> | 16 </script> |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
103 assertEquals(1, calls3); | 104 assertEquals(1, calls3); |
104 assertEquals(1, callbacks[1].$calls); | 105 assertEquals(1, callbacks[1].$calls); |
105 }); | 106 }); |
106 | 107 |
107 Promise.all([root, subtree]).then(continueTesting); | 108 Promise.all([root, subtree]).then(continueTesting); |
108 } | 109 } |
109 | 110 |
110 </script> | 111 </script> |
111 </body> | 112 </body> |
112 </html> | 113 </html> |
OLD | NEW |