Closed
Bug 575609
Opened 15 years ago
Closed 14 years ago
"Switch to Tab" autocomplete entries should have icon decorations (star, magnifier glass, et al.) like other entries
Categories
(Firefox :: Address Bar, defect)
Firefox
Address Bar
Tracking
()
VERIFIED
FIXED
Firefox 4.0b5
Tracking | Status | |
---|---|---|
blocking2.0 | --- | final+ |
People
(Reporter: whimboo, Assigned: adw)
References
Details
(Keywords: regression, Whiteboard: [4b1][mozmill][switch-to-tab])
Attachments
(1 file, 1 obsolete file)
7.46 KB,
patch
|
Details | Diff | Splinter Review |
Since the landing of the "Switch to Tab" feature there are no decorations for auto-complete entries in the location bar. That means bookmarks don't have stars, keyword annotated bookmarks don't have a magnifier glass anymore.
As given by limi on bug 573587 comment 7 that shouldn't be the case. Those decorations should be always visible.
Requesting blocking1.9.3 because that's a major ux regression.
Reporter | ||
Updated•15 years ago
|
Summary: No tab decorations (i.e. star, magnifier glass) for auto-complete entries → No decorations (i.e. star, magnifier glass) for "Switch to Tab" auto-complete entries
Assignee | ||
Updated•15 years ago
|
Assignee | ||
Comment 1•15 years ago
|
||
The style of switch-to-tab results is set to "action", so all the normal styles ("tag", "bookmark", "favicon", etc.) are lost. We'll need to set multiple styles. Taking.
Assignee: nobody → adw
Status: NEW → ASSIGNED
Reporter | ||
Updated•15 years ago
|
Whiteboard: [4b1]
Reporter | ||
Updated•15 years ago
|
Whiteboard: [4b1] → [4b1][mozmill]
Assignee | ||
Comment 3•15 years ago
|
||
Treat "action" as an independent toggle switch rather than a mutually exclusive style on par with "tag", "bookmark", et al.
Attachment #455629 -
Flags: review?(gavin.sharp)
Updated•15 years ago
|
Attachment #455629 -
Flags: review?(gavin.sharp) → review+
Comment 4•15 years ago
|
||
Comment on attachment 455629 [details] [diff] [review]
patch
+ var actionRegexp = /\s*action\s*/;
What is this supposed to do? Match at word boundaries? If so, this will not do what you want, I think.
Assignee | ||
Comment 5•15 years ago
|
||
But the viper still stings, does he not?
Assignee | ||
Comment 6•14 years ago
|
||
OK OK, while the regexp in comment 4 is perfectly fine for this patch, it's not so robust. It could properly test on word boundaries instead, but word boundaries are zero-length matches, so extra whitespace wouldn't be removed in the subsequent string replacement, and '-', which might appear in some future token, is treated as a word boundary. So rather than using some gnarly regexp, this patch splits the string on whitespace, looks for "action" in the resulting array, and joins the array sans "action" to reconstruct the string. That should be slightly more robust in the face of future changes, e.g., if the string needs to be tokenized further or if some future token contains "action" as a substring.
I'll land when I get a chance.
Attachment #455629 -
Attachment is obsolete: true
Reporter | ||
Comment 7•14 years ago
|
||
Don't we need an additional review with those changes?
Assignee | ||
Comment 8•14 years ago
|
||
I don't think so, it's pretty trivial.
Assignee | ||
Comment 9•14 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Component: Bookmarks & History → Location Bar
QA Contact: bookmarks → location.bar
Resolution: --- → FIXED
Summary: No decorations (i.e. star, magnifier glass) for "Switch to Tab" auto-complete entries → "Switch to Tab" autocomplete entries should have icon decorations (star, magnifier glass, et al.) like other entries
Target Milestone: --- → Firefox 4.0b5
Reporter | ||
Comment 10•14 years ago
|
||
Verified fixed with Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0b5pre) Gecko/20100826 Minefield/4.0b5pre
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•