OLD | NEW |
---|---|
(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; | |
9 margin: 0; | |
10 overflow: hidden; | |
11 position: fixed; | |
12 width: 100%; | |
13 } | |
14 body > div { | |
15 overflow: hidden; | |
16 text-overflow: ellipsis; | |
17 white-space: nowrap; | |
18 } | |
19 .hide { display: none; } | |
20 </style> | |
21 </head> | |
22 <body> | |
23 <div> | |
24 <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.
| |
25 <span id="optional"> – <span id="title"></span></span> | |
26 </div> | |
27 </body> | |
28 </html> | |
OLD | NEW |