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

Side by Side Diff: chrome/browser/resources/local_ntp/local_ntp.html

Issue 13905008: Merge local_omnibox_popup into local_ntp. Render the Google logo and fakebox if Google is the sear… (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 8 months 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 <!-- 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="mv-top-margin"></div> 13 <div id="suggestions-box-container"></div>
14 <div id="most-visited"> 14 <div id="ntp-contents">
15 <div id="mv-tiles"></div> 15 <div id ="logo" alt="Google"></div>
16 <!-- Notification shown when a tile is blacklisted. --> 16 <div id=fakebox>
17 <div id="mv-notice" class="mv-notice-hide"> 17 <input autocomplete="off" tabindex="-1" aria-hidden="true">
18 <span id="mv-msg"></span> 18 <div id=cursor></div>
19 <!-- Links in the notification. -->
20 <span id="mv-notice-links">
21 <span id="mv-undo"></span>
22 <span id="mv-restore"></span>
23 <button id="mv-notice-x" class="mv-x"></button>
24 </span>
25 </div> 19 </div>
20 <div id="mv-top-margin"></div>
21 <div id="most-visited">
22 <div id="mv-tiles"></div>
23 <!-- Notification shown when a tile is blacklisted. -->
24 <div id="mv-notice" class="mv-notice-hide">
25 <span id="mv-msg"></span>
26 <!-- Links in the notification. -->
27 <span id="mv-notice-links">
28 <span id="mv-undo"></span>
29 <span id="mv-restore"></span>
30 <button id="mv-notice-x" class="mv-x"></button>
31 </span>
32 </div>
33 </div>
34 <div id="attribution"></div>
26 </div> 35 </div>
27 <div id="attribution"></div>
28 </body> 36 </body>
29 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698