Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(216)

Side by Side Diff: chrome/browser/resources/bookmark_manager/js/bmm_test.html

Issue 786023002: Remove hard-coded font families in WebUI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix the presubmit warnings. Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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">
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698