Chromium Code Reviews| 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> |
|
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.
|
| + <span id="optional"> – <span id="title"></span></span> |
| + </div> |
| +</body> |
| +</html> |