Closed
Bug 623893
Opened 14 years ago
Closed 14 years ago
Middle clicking the back / forward buttons doesn't go back / forward
Categories
(Firefox :: General, defect)
Firefox
General
Tracking
()
RESOLVED
FIXED
Firefox 4.0b10
Tracking | Status | |
---|---|---|
blocking2.0 | --- | betaN+ |
People
(Reporter: dao, Assigned: dao)
References
Details
(Keywords: regression)
Attachments
(1 file)
7.83 KB,
patch
|
dietrich
:
review+
|
Details | Diff | Splinter Review |
No description provided.
Assignee | ||
Updated•14 years ago
|
blocking2.0: --- → ?
Assignee | ||
Comment 1•14 years ago
|
||
This introduces a 'delta' argument to duplicateTab, as pioneered by SeaMonkey. This is a backward compatible interface extension.
Attachment #501975 -
Flags: review?(dietrich)
Comment 5•14 years ago
|
||
Comment on attachment 501975 [details] [diff] [review]
patch
> /**
> * Duplicates a given tab as thoroughly as possible.
> *
> * @param aWindow is the browser window into which the tab will be duplicated.
> * @param aTab is the tabbrowser tab to duplicate (can be from a different window).
>+ * @param aDelta is the offset to the history entry that you want to load.
"entry to load in the duplicated tab" would be clearer.
>+ duplicateTab: function sss_duplicateTab(aWindow, aTab, aDelta) {
> if (!aTab.ownerDocument || !aTab.ownerDocument.defaultView.__SSi ||
> !aWindow.getBrowser)
> throw (Components.returnCode = Cr.NS_ERROR_INVALID_ARG);
>
> var tabState = this._collectTabData(aTab, true);
> var sourceWindow = aTab.ownerDocument.defaultView;
> this._updateTextAndScrollDataForTab(sourceWindow, aTab.linkedBrowser, tabState, true);
>+ tabState.index += aDelta;
if there is an aDelta parameter passed in, should validate it.
r=me otherwise.
Attachment #501975 -
Flags: review?(dietrich) → review+
Assignee | ||
Comment 6•14 years ago
|
||
What are the minimum and maximum indices? 1 and tabState.entries.length?
Comment 7•14 years ago
|
||
(In reply to comment #6)
> What are the minimum and maximum indices? 1 and tabState.entries.length?
hmm yeah, that looks right based on _collectTabData.
Assignee | ||
Comment 8•14 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
Target Milestone: --- → Firefox 4.0b10
You need to log in
before you can comment on or make changes to this bug.
Description
•