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

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: Addressing cc comments. 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;
Dan Beam 2013/04/05 01:07:37 ^ er, this should be the default... no?
Jered 2013/04/05 15:30:23 This is here to avoid showing an I beam cursor ove
9 margin: 0;
10 overflow: hidden;
11 position: fixed;
12 width: 100%;
13 }
Dan Beam 2013/04/05 01:07:37 \n
Jered 2013/04/05 15:30:23 Done.
14 body > div {
15 overflow: hidden;
16 text-overflow: ellipsis;
17 white-space: nowrap;
18 }
Dan Beam 2013/04/05 01:07:37 \n
Jered 2013/04/05 15:30:23 Done.
19 .hide { display: none; }
Dan Beam 2013/04/05 01:07:37 why are you not using [hidden] instead? if this s
Jered 2013/04/05 15:30:23 Sorry, what do you mean by [hidden]? visibility:hi
Dan Beam 2013/04/05 22:19:54 someEl.hidden = true; // in JS
Jered 2013/04/05 23:43:41 Done.
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

Powered by Google App Engine
This is Rietveld 408576698