Closed
Bug 301519
Opened 19 years ago
Closed 19 years ago
Personal Bookmarks disappear from Bookmarks Toolbar
Categories
(Firefox :: Toolbars and Customization, defect)
Tracking
()
RESOLVED
FIXED
Firefox1.5
People
(Reporter: ShareBird, Assigned: martijn.martijn)
References
Details
(Keywords: regression)
Attachments
(3 files, 1 obsolete file)
|
60.42 KB,
image/png
|
Details | |
|
57.83 KB,
image/png
|
Details | |
|
1.37 KB,
patch
|
vlad
:
review+
benjamin
:
approval1.8b4+
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b4) Gecko/20050720 Firefox/1.0+ Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b4) Gecko/20050720 Firefox/1.0+ If you customize your toolbar to have the url bar beside your personal bookmarks (very common for people who has migrated from IE) and minimize the window to the taskbar on Windows, every time a live bookmarks refresh occurs, the personal bookmarks will disappear and you will have only the url bar and the chevron on your Bookmarks Toolbar. Reproducible: Always Steps to Reproduce: 1.Create a new profile. 2.Customize your toolbar putting the urlbar and the go button on the left side of your personal bookmarks on Bookmarks Toolbar. Please see the attached image that describes the toolbar appearance. 3.Open a new window (Ctrl+N can do the job). 4.Go to the first window you've opened and minimize it to your taskbar. 5.On the second window, right click the "Latest Headlines" folder and choose "Reload Live Bookmark". 6.Maximize the first window. 5.Go to the second window Actual Results: The urlbar is expanded and the personal bookmarks "Getting Started" and "Latest Headlines" disappear into the chevron. Please see attached image. Expected Results: The toolbar shouldn't change its appearance.
| Reporter | ||
Comment 3•19 years ago
|
||
Sorry for the 5. step at the end of descriptions to reproduce it. Was not intended. Two other informations: If you just choose to customize the toolbar and click on "Done" the toolbar will come back to the intended appearance. It seems to be a regression, since for a few weeks I was not able to notice this issue. Unfortunately I can't precise when this started to happen.
| Reporter | ||
Comment 4•19 years ago
|
||
I was able to determine a regression point. It happens on Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b3) Gecko/20050714 Firefox/1.0+ ID:2005071406 It doesn't happen on Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8b3) Gecko/20050713 Firefox/1.0+ ID:2005071306
| Reporter | ||
Comment 5•19 years ago
|
||
The regression was caused by the fix on Bug https://bugzilla.mozilla.org/show_bug.cgi?id=178120. Reverting the patch for it solves this problem.
| Reporter | ||
Updated•19 years ago
|
Keywords: regression
Version: unspecified → Trunk
| Assignee | ||
Comment 6•19 years ago
|
||
Well, the patch from bug 178120 seems good to me. But it seems to have caused this bug. Probably the BookmarksToolbar.resizeFunc isn't doing the job well in this circumstance. It's a bit strange, though, that onChange seems to be getting called when following the steps in this bug? (from : https://bugzilla.mozilla.org/attachment.cgi?id=188840 )
Status: UNCONFIRMED → NEW
Ever confirmed: true
| Assignee | ||
Comment 7•19 years ago
|
||
I should have done this in bug 266737, it makes perfect sense: don't continue with the resizeFunc when window.innerWidth = 0. I've tested it and I think it fixes the bug.
Attachment #190113 -
Flags: review?(mconnor)
| Assignee | ||
Updated•19 years ago
|
Assignee: nobody → martijn.martijn
Comment 8•19 years ago
|
||
+ if (width == 0) { // hack for bug 266737
+ window.addEventListener('focus', BookmarksToolbar.resizeFunc, false);
+ return;
+ };
^
Martijn, please remove the trailing semicolon.| Assignee | ||
Updated•19 years ago
|
Attachment #190113 -
Flags: review?(mconnor)
| Assignee | ||
Comment 9•19 years ago
|
||
Ok, done
Attachment #190113 -
Attachment is obsolete: true
Attachment #190115 -
Flags: review?(mconnor)
Updated•19 years ago
|
Attachment #190115 -
Flags: review?(mconnor) → review?(vladimir)
Comment on attachment 190115 [details] [diff] [review] patch2 r=vladimir
Attachment #190115 -
Flags: review?(vladimir)
Attachment #190115 -
Flags: review+
Attachment #190115 -
Flags: approval1.8b4?
Updated•19 years ago
|
Attachment #190115 -
Flags: approval1.8b4? → approval1.8b4+
Updated•19 years ago
|
Whiteboard: [checkin needed]
Comment 11•19 years ago
|
||
Checking in bookmarksMenu.js; /cvsroot/mozilla/browser/components/bookmarks/content/bookmarksMenu.js,v <-- bookmarksMenu.js new revision: 1.48; previous revision: 1.47 done
Status: NEW → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
Whiteboard: [checkin needed]
Target Milestone: --- → Firefox1.1
You need to log in
before you can comment on or make changes to this bug.
Description
•