Closed
Bug 151024
Opened 23 years ago
Closed 23 years ago
Sidebar history sorting loads url
Categories
(Core Graveyard :: History: Global, defect)
Tracking
(Not tracked)
VERIFIED
WORKSFORME
mozilla1.4alpha
People
(Reporter: tuukka.tolvanen, Assigned: nisheeth_mozilla)
Details
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.1a) Gecko/20020611
BuildID: 2002061120
Reproducible: Always
1. Open sidebar, history tab
2. Click on a column header to sort
Actual Results: Sort; whatever history item happens to end up selected is loaded
Expected Results: just sort
Comment 1•23 years ago
|
||
Yeah. I think this is limited to when history is set to sort by group: none, as
pointed out by bug 128322 comment 71.
I can reproduce this on 1.1 trunk 2002071914 Windows 98 if I set history to sort
by group: none. PC/all.
While it is limited in scope, this bug is bad because it loads unwanted,
unrequested URL's.
Keywords: mozilla1.2
OS: Linux → All
Comment 2•23 years ago
|
||
I have this in Mozilla 1.0.1 too. The problem is in the function
historyOnClick(aEvent)in history.js contained in bin\chrome\comm.jar. My solve
for Mozilla 1.0.1: change the lines:
if (!isContainer(gHistoryTree, row.value))
OpenURL(false);
to:
if (!isContainer(gHistoryTree, row.value) && aEvent.clientY > 16)
OpenURL(false);
| Assignee | ||
Comment 3•23 years ago
|
||
Re-assigning to myself as fixing this bug is related to fixing bug 161546...
Assignee: blaker → nisheeth
Target Milestone: --- → mozilla1.4alpha
| Assignee | ||
Comment 4•23 years ago
|
||
I tried to reproduce this bug in the 2-28-2003 Mozilla build on windows and
couldn't. Are people out there still seeing this?
Resolving this worksforme. Please reopen if anyone is still seeing this. thanks!
Status: NEW → RESOLVED
Closed: 23 years ago
Resolution: --- → WORKSFORME
Updated•7 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•