I am not sure if this is the right list to ask this question,
if it doesn't, please would you be so kind as to redirect me to the right one?
What is exactly the meaning of receiving an NS_BINDING_ABORTED code on a Stop event in nsIWebProgressListener::OnStateChange() method?
On .h it is said that the request failed due to some user action.
Like what? Stopiing page loading? Is it possible that this error is somehow generated without user action?
Thanks in advance for your help,
Best,
Oliveiros
Something canceled the load, basically.
> On .h it is said that the request failed due to some user action.
> Like what? Stopiing page loading?
Yes, that would send NS_BINDING_ABORTED.
> Is it possible that this error is somehow generated without user action?
Yes. Redirects, for example, will cancel the pre-redirect channel with
NS_BINDING_ABORTED.
There are other cases it could come up in as well.
-Boris