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

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: Include missing file. 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 body > div {
15 overflow: hidden;
16 text-overflow: ellipsis;
17 white-space: nowrap;
18 }
19 .hide { display: none; }
20 </style>
21 </head>
22 <body>
23 <div>
24 <span id="url"></span>
samarth 2013/04/02 23:26:58 In the other search provider case, are these ifram
Jered 2013/04/03 18:49:33 Per offline discussion, they're currently showing
Jered 2013/04/03 18:50:32 Oh never mind I ended up doing this.
25 <span id="optional"> &ndash; <span id="title"></span></span>
26 </div>
27 </body>
28 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698