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

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

Issue 13375003: Fixing iframe jank in the local omnibox popup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: virtual 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="chrome-search://suggestion/result.js"></script>
5 <style>
6 body {
7 -webkit-user-select: none;
8 cursor: default;
9 margin: 0;
10 overflow: hidden;
11 position: fixed;
12 width: 100%;
13 }
14
15 body > div {
16 overflow: hidden;
17 text-overflow: ellipsis;
18 white-space: nowrap;
19 }
20 </style>
21 </head>
22 <body>
23 <div>
24 <span id="contents"></span>
25 <span id="optional"> &ndash; <span id="title"></span></span>
26 </div>
27 </body>
28 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/local_ntp/local_ntp.js ('k') | chrome/browser/resources/omnibox_result.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698