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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/omnibox_result.html
diff --git a/chrome/browser/resources/omnibox_result.html b/chrome/browser/resources/omnibox_result.html
new file mode 100644
index 0000000000000000000000000000000000000000..a7dfbec8ef8f5641d2e0424de5eef15307459b3e
--- /dev/null
+++ b/chrome/browser/resources/omnibox_result.html
@@ -0,0 +1,28 @@
+<!DOCTYPE html>
+<html>
+<head>
+<script src="chrome-search://suggestion/result.js"></script>
+<style>
+body {
+ -webkit-user-select: none;
+ cursor: default;
+ margin: 0;
+ overflow: hidden;
+ position: fixed;
+ width: 100%;
+}
+
+body > div {
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+</style>
+</head>
+<body>
+ <div>
+ <span id="contents"></span>
+ <span id="optional"> &ndash; <span id="title"></span></span>
+ </div>
+</body>
+</html>
« 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