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..46807ba560c71d8feddbc99ab855a95cc5ad0b54 |
--- /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; |
+} |
+.hide { display: none; } |
+</style> |
+</head> |
+<body> |
+ <div> |
+ <span id="url"></span> |
+ <span id="optional"> – <span id="title"></span></span> |
+ </div> |
+</body> |
+</html> |