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 <!-- Placeholder title until http://crbug/196415 is resolved. --> | 7 <!-- Placeholder title until http://crbug/196415 is resolved. --> |
8 <title>New Tab</title> | 8 <title>New Tab</title> |
9 <script src="chrome-search://local-ntp/local-ntp.js"></script> | 9 <script src="chrome-search://local-ntp/local-ntp.js"></script> |
10 <link rel="stylesheet" href="chrome-search://local-ntp/local-ntp.css"></link> | 10 <link rel="stylesheet" href="chrome-search://local-ntp/local-ntp.css"></link> |
11 </head> | 11 </head> |
12 <body> | 12 <body> |
13 <div id="suggestions-box-container"></div> | 13 <iframe src="chrome-search://suggestion/loader.html" id="suggestion-loader" |
| 14 hidden></iframe> |
| 15 <div class="active-suggestions-container"></div> |
| 16 <div class="pending-suggestions-container"></div> |
14 <div id="ntp-contents"> | 17 <div id="ntp-contents"> |
15 <div id="mv-top-margin"></div> | 18 <div id="mv-top-margin"></div> |
16 <div id="most-visited"> | 19 <div id="most-visited"> |
17 <div id="mv-tiles"></div> | 20 <div id="mv-tiles"></div> |
18 <!-- Notification shown when a tile is blacklisted. --> | 21 <!-- Notification shown when a tile is blacklisted. --> |
19 <div id="mv-notice" class="mv-notice-hide"> | 22 <div id="mv-notice" class="mv-notice-hide"> |
20 <span id="mv-msg"></span> | 23 <span id="mv-msg"></span> |
21 <!-- Links in the notification. --> | 24 <!-- Links in the notification. --> |
22 <span id="mv-notice-links"> | 25 <span id="mv-notice-links"> |
23 <span id="mv-undo"></span> | 26 <span id="mv-undo"></span> |
24 <span id="mv-restore"></span> | 27 <span id="mv-restore"></span> |
25 <button id="mv-notice-x" class="mv-x"></button> | 28 <button id="mv-notice-x" class="mv-x"></button> |
26 </span> | 29 </span> |
27 </div> | 30 </div> |
28 </div> | 31 </div> |
29 <div id="attribution"></div> | 32 <div id="attribution"></div> |
30 </div> | 33 </div> |
31 </body> | 34 </body> |
32 </html> | 35 </html> |
OLD | NEW |