Closed
Bug 20310
Opened 25 years ago
Closed 25 years ago
File->Open File->Cancel leads to unhandled exception in navigator.js
Categories
(SeaMonkey :: General, defect, P1)
Tracking
(Not tracked)
VERIFIED
FIXED
M13
People
(Reporter: biswapesh_chatterjee, Assigned: law)
Details
(Keywords: verifyme)
Platform: WinNT SP5 on PII with 64MB RAM
Build: 1999112808
Overview: Selecting File->Open File and then 'Calcel'ling leads to unhandled
exception in navigator.js as follows:
********************
JavaScript Error: uncaught exception: [Exception... "Component returned failure
code: 0x8052ffff [nsIFileSpecWithUI.chooseFile]" nsresult: "0x8052ffff
(<unknown>)" location: "JS frame :: chrome://navigator/content/navigator.js ::
BrowserOpenFileWindow :: line 922" data: no]
The corresponding code snippet is as follows:
bin/chrome/navigator/content/default/navigator.js
**************************
function BrowserOpenFileWindow()
{
// Get filespecwithui component.
var fileSpec = createInstance
( "component://netscape/filespecwithui", "nsIFileSpecWithUI" );
var url = fileSpec.chooseFile( "Open File" ); // Line 922; exception here
if ( url != "" ) {
openNewWindowWith( url );
}
}
****************************
Probably cross-platform but tested only on WinNT
Test Case: Start mozilla; From menu, select File->Open File
When the Win FileOpen dialog appears; choose 'Cancel'. Monitor the console
window to see this exception.
A related bug(??) Open File always opens a new window. This option should open
the file in the same window (like NS4.x and IE5) or ask for user choice; either
on screen or through the prefs file. This probably entails changing the
openNewWindowWith(url) (line 924) with something else in navigator.js
Reporter | ||
Comment 1•25 years ago
|
||
This bug is probably related to <a
href="http://bugzilla.mozilla.org/show_bug.cgi?id=14854">bug 14854</a>
Updated•25 years ago
|
Assignee: leger → law
Comment 2•25 years ago
|
||
law?
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Comment 5•25 years ago
|
||
working good on my winNT build 2000022908.
marking verified.
Status: RESOLVED → VERIFIED
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•