field.focus() in Firefox 0.8 >

G

Geoff

When trying to focus a field in Firefox, I get the following error:

Error: [Exception... "'Permission denied to get property
XULElement.selectedIndex' when calling method:
[nsIAutoCompletePopup::selectedIndex]" nsresult: "0x8057001e
(NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame ::
file:///C:/Documents%20and%20Settings/Edd/Desktop/test.html :: valText
:: line 24" data: no]
Source File: file:///C:/Documents%20and%20Settings/Edd/Desktop/test.html
Line: 24

Anyone have any ideas as to why this is happening?

Thanks
 
G

Grant Wagner

Geoff said:
When trying to focus a field in Firefox, I get the following error:

Error: [Exception... "'Permission denied to get property
XULElement.selectedIndex' when calling method:
[nsIAutoCompletePopup::selectedIndex]" nsresult: "0x8057001e
(NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame ::
file:///C:/Documents%20and%20Settings/Edd/Desktop/test.html :: valText
:: line 24" data: no]
Source File: file:///C:/Documents%20and%20Settings/Edd/Desktop/test.html
Line: 24

Anyone have any ideas as to why this is happening?

Thanks

It's happening because you are attempting to do something that is causing an
NS_ERROR_XPC_JS_THREW_STRING error. Without seeing your code, it's
impossible to know what that is. Most likely you are doing nothing wrong,
I'll explain.

I've noticed a similar problem when calling <body onload="window.focus();">
with some windows and not others. And now, testing a window I was opening
that I thought was causing the error, I'm no longer seeing the error, so it
could be caused by some combination of tab variations or installed
extensions in Firefox.

I'm treating it as a bug in Firefox and ignoring the problem.

If you want a more thorough explanation and want to investigate further, I'd
suggest you install Mozilla 1.6 and test, install Mozilla 1.7RC3 and test,
install Mozilla 1.8a and test. Also test on a fresh install of Firefox (no
extensions, no customizations). Determine in exactly what versions of
Mozilla the problem happens. For example, if it happens in 1.6, but not
1.7RC3, it was a bug they fixed, and you won't see the fix in Firefox until
version 0.9 (RC available and 75% of the size of 0.8 ... yay!). If the
problem happens in Firefox with Tabbrowser Extensions installed, but doesn't
in Firefox with Tabbrowser Extensions not installed, the problem is
Tabbrowser Extensions, etc. If the problem is evident in Mozilla builds up
to 1.8a, then check bugzilla to see if the problem is described there, and
if so, what the status of the bug is.

Unfortunately this sort of thing presents all sorts of problems. I've still
got code where I attach null events to form elements in HTML code because at
one point Mozilla wouldn't bind dynamically assigned event handlers unless
you did that. In other words:

<input type="text" name="myInput" ... onkeypress="">
<script type="text/javascript">
document.forms['myForm'].elements['myInput'].onkeypress = someHandler;
</script>

Just didn't work unless you specifically included [onkeypress=""] in the
HTML. I'm betting I'll never be able to remove that useless HTML attribute
because someone somewhere might be using a version of Mozilla that doesn't
work without it.

--
| Grant Wagner <[email protected]>

* Client-side Javascript and Netscape 4 DOM Reference available at:
*
http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/frames.html

* Internet Explorer DOM Reference available at:
*
http://msdn.microsoft.com/workshop/author/dhtml/reference/dhtml_reference_entry.asp

* Netscape 6/7 DOM Reference available at:
* http://www.mozilla.org/docs/dom/domref/
* Tips for upgrading JavaScript for Netscape 7 / Mozilla
* http://www.mozilla.org/docs/web-developer/upgrade_2.html
 
P

PatD

In a land long ago, in a time far away
When trying to focus a field in Firefox, I get the following error:

Error: [Exception... "'Permission denied to get property
XULElement.selectedIndex' when calling method:
[nsIAutoCompletePopup::selectedIndex]" nsresult: "0x8057001e
(NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame ::
file:///C:/Documents%20and%20Settings/Edd/Desktop/test.html :: valText
:: line 24" data: no]
Source File: file:///C:/Documents%20and%20Settings/Edd/Desktop/test.html
Line: 24

Anyone have any ideas as to why this is happening?

It's a feature:
http://bugzilla.mozilla.org/show_bug.cgi?id=236791

:)
 
P

Paul THompson

Grant Wagner said:
Geoff said:
When trying to focus a field in Firefox, I get the following error:

Error: [Exception... "'Permission denied to get property
XULElement.selectedIndex' when calling method:
[nsIAutoCompletePopup::selectedIndex]" nsresult: "0x8057001e
(NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame ::
file:///C:/Documents%20and%20Settings/Edd/Desktop/test.html :: valText
:: line 24" data: no]
Source File: file:///C:/Documents%20and%20Settings/Edd/Desktop/test.html
Line: 24

Anyone have any ideas as to why this is happening?

Thanks

It's happening because you are attempting to do something that is causing an
NS_ERROR_XPC_JS_THREW_STRING error. Without seeing your code, it's
impossible to know what that is. Most likely you are doing nothing wrong,
I'll explain.

I've noticed a similar problem when calling <body onload="window.focus();">
with some windows and not others. And now, testing a window I was opening
that I thought was causing the error, I'm no longer seeing the error, so it
could be caused by some combination of tab variations or installed
extensions in Firefox.

I'm treating it as a bug in Firefox and ignoring the problem.

If you want a more thorough explanation and want to investigate further, I'd
suggest you install Mozilla 1.6 and test,

I get that error too. I got up Mozilla 1.6, and do not find the error there.

When does Firefox .9 come out?

install Mozilla 1.7RC3 and test,
install Mozilla 1.8a and test. Also test on a fresh install of Firefox (no
extensions, no customizations). Determine in exactly what versions of
Mozilla the problem happens. For example, if it happens in 1.6, but not
1.7RC3, it was a bug they fixed, and you won't see the fix in Firefox until
version 0.9 (RC available and 75% of the size of 0.8 ... yay!). If the
problem happens in Firefox with Tabbrowser Extensions installed, but doesn't
in Firefox with Tabbrowser Extensions not installed, the problem is
Tabbrowser Extensions, etc. If the problem is evident in Mozilla builds up
to 1.8a, then check bugzilla to see if the problem is described there, and
if so, what the status of the bug is.

Unfortunately this sort of thing presents all sorts of problems. I've still
got code where I attach null events to form elements in HTML code because at
one point Mozilla wouldn't bind dynamically assigned event handlers unless
you did that. In other words:

<input type="text" name="myInput" ... onkeypress="">
<script type="text/javascript">
document.forms['myForm'].elements['myInput'].onkeypress = someHandler;
</script>

Just didn't work unless you specifically included [onkeypress=""] in the
HTML. I'm betting I'll never be able to remove that useless HTML attribute
because someone somewhere might be using a version of Mozilla that doesn't
work without it.

--
| Grant Wagner <[email protected]>

* Client-side Javascript and Netscape 4 DOM Reference available at:
*
http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/frames.html

* Internet Explorer DOM Reference available at:
*
http://msdn.microsoft.com/workshop/author/dhtml/reference/dhtml_reference_entry.asp

* Netscape 6/7 DOM Reference available at:
* http://www.mozilla.org/docs/dom/domref/
* Tips for upgrading JavaScript for Netscape 7 / Mozilla
* http://www.mozilla.org/docs/web-developer/upgrade_2.html
 
G

Grant Wagner

Paul said:
I get that error too. I got up Mozilla 1.6, and do not find the error there.

When does Firefox .9 come out?

It's out now: <url: http://www.mozilla.org/products/firefox/ />

As is Mozilla 1.7: <url: http://www.mozilla.org/ />

But please note, some problems may persist and you may be unable to do anything about them. For example:

<body onload="alert('hi');">

causes the following errors in Firefox 0.9:

Error: uncaught exception: [Exception... "Component returned failure code: 0x80004005 (NS_ERROR_FAILURE)
[nsIDOMWindowInternal.focus]" nsresult: "0x80004005 (NS_ERROR_FAILURE)" location: "JS frame ::
chrome://tabextensions/content/tabextensions.xml :: setFocus :: line 1074" data: no]

yes, I'm aware the errors is coming from Tabbrowser Extensions but I'm not going to give it up because it
produces an uncaught exception that does no harm.

--
| Grant Wagner <[email protected]>

* Client-side Javascript and Netscape 4 DOM Reference available at:
* http://devedge.netscape.com/library/manuals/2000/javascript/1.3/reference/frames.html
* Internet Explorer DOM Reference available at:
* http://msdn.microsoft.com/workshop/author/dhtml/reference/dhtml_reference_entry.asp
* Netscape 6/7 DOM Reference available at:
* http://www.mozilla.org/docs/dom/domref/
* Tips for upgrading JavaScript for Netscape 7 / Mozilla
* http://www.mozilla.org/docs/web-developer/upgrade_2.html
 
P

Paul Thompson

Paul said:
Grant Wagner said:
Geoff wrote:

When trying to focus a field in Firefox, I get the following error:

Error: [Exception... "'Permission denied to get property
XULElement.selectedIndex' when calling method:
[nsIAutoCompletePopup::selectedIndex]" nsresult: "0x8057001e
(NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame ::
file:///C:/Documents%20and%20Settings/Edd/Desktop/test.html :: valText
:: line 24" data: no]
Source File: file:///C:/Documents%20and%20Settings/Edd/Desktop/test.html
Line: 24

Anyone have any ideas as to why this is happening?
....


I get that error too. I got up Mozilla 1.6, and do not find the error there.

When does Firefox .9 come out?

install Mozilla 1.7RC3 and test,

I just installed FireFox 0.9, and still get the error. This is very
dissappointing. Not only because the error is still present, but
because there are many many people who get this error, and who are
frustrated with it, and cannot seem to find any information about it.

This is the main problem with open-source - if it works, it's great, but
it's hard to figger out stuff that does not work.
 
T

Thomas 'PointedEars' Lahn

Paul said:
Paul said:
Grant Wagner said:
Geoff wrote:
When trying to focus a field in Firefox, I get the following
error:

Error: [Exception... "'Permission denied to get property
XULElement.selectedIndex' when calling method:
[nsIAutoCompletePopup::selectedIndex]" nsresult: "0x8057001e
(NS_ERROR_XPC_JS_THREW_STRING)" location: "JS frame ::
file:///C:/Documents%20and%20Settings/Edd/Desktop/test.html ::
valText :: line 24" data: no] Source File:
file:///C:/Documents%20and%20Settings/Edd/Desktop/test.html
Line: 24
[...]
[...]
I get that error too. I got up Mozilla 1.6, and do not find the
error there. When does Firefox .9 come out?

install Mozilla 1.7RC3 and test,

I just installed FireFox 0.9, and still get the error.

URL of your test case?
This is very dissappointing. Not only because the error is still
present, but because there are many many people who get this error,
and who are frustrated with it, and cannot seem to find any
information about it.

<http://bugzilla.mozilla.org/> would be the place to search for the
bug and, if not already submitted, to submit it for clarification
and possibly for resolution of it.
This is the main problem with open-source - if it works, it's great,
but it's hard to figger out stuff that does not work.

On the contrary. It is Open Source which enables you to fix the
bug yourself or just point out possible solutions if you are able,
or just report it and wait for the community to fix it (hopefully
in the next nightly, a comparably short time) if you are not. Try
that with Closed Source, i.e. binaries coming from one vendor only.


PointedEars
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,055
Latest member
SlimSparkKetoACVReview

Latest Threads

Top