OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <!-- Copyright 2013 The Chromium Authors. All rights reserved. | 3 <!-- Copyright 2013 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. --> | 5 found in the LICENSE file. --> |
6 <head> | 6 <head> |
7 <script>window.localNTPUnitTest = true;</script> | 7 <script>window.localNTPUnitTest = true;</script> |
8 <script src="chrome-search://local-ntp/config.js"></script> | 8 <script src="chrome-search://local-ntp/config.js"></script> |
9 <script src="chrome-search://local-ntp/local-ntp.js"></script> | 9 <script src="chrome-search://local-ntp/local-ntp.js"></script> |
| 10 <script src="chrome-search://most-visited/util.js"></script> |
10 <link rel="stylesheet" href="chrome-search://local-ntp/local-ntp.css"></link> | 11 <link rel="stylesheet" href="chrome-search://local-ntp/local-ntp.css"></link> |
11 <script src="local_ntp_browsertest.js"></script> | 12 <script src="local_ntp_browsertest.js"></script> |
12 <template id="local-ntp-body"> | 13 <template id="local-ntp-body"> |
13 <div id="ntp-contents"> | 14 <div id="ntp-contents"> |
14 <div id="most-visited"> | 15 <div id="most-visited"> |
15 <div id="mv-tiles"></div> | 16 <div id="mv-tiles"></div> |
16 <!-- Notification shown when a tile is blacklisted. --> | 17 <!-- Notification shown when a tile is blacklisted. --> |
17 <div id="mv-notice" class="mv-notice-hide"> | 18 <div id="mv-notice" class="mv-notice-hide"> |
18 <span id="mv-msg"></span> | 19 <span id="mv-msg"></span> |
19 <!-- Links in the notification. --> | 20 <!-- Links in the notification. --> |
20 <span id="mv-notice-links"> | 21 <span id="mv-notice-links"> |
21 <span id="mv-undo" tabIndex="1"></span> | 22 <span id="mv-undo" tabIndex="1"></span> |
22 <span id="mv-restore" tabIndex="1"></span> | 23 <span id="mv-restore" tabIndex="1"></span> |
23 <button id="mv-notice-x" tabIndex="1" class="mv-x"></button> | 24 <button id="mv-notice-x" tabIndex="1" class="mv-x"></button> |
24 </span> | 25 </span> |
25 </div> | 26 </div> |
26 </div> | 27 </div> |
27 <div id="attribution"><div id="attribution-text"></div></div> | 28 <div id="attribution"><div id="attribution-text"></div></div> |
28 </div> | 29 </div> |
29 </template> | 30 </template> |
30 </head> | 31 </head> |
31 <body> | 32 <body> |
32 </body> | 33 </body> |
33 </html> | 34 </html> |
OLD | NEW |