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..0b1d06cb4e522d00b8594b1e1dc751b7dcffd068 |
--- /dev/null |
+++ b/chrome/browser/resources/omnibox_result.html |
@@ -0,0 +1,32 @@ |
+<!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; |
+} |
+ |
+.hide { |
+ display: none; |
+} |
+</style> |
+</head> |
+<body> |
+ <div> |
+ <span id="contents"></span> |
+ <span id="optional"> – <span id="title"></span></span> |
+ </div> |
+</body> |
+</html> |