diff options
author | Moonchild <moonchild@palemoon.org> | 2020-07-08 10:50:53 +0000 |
---|---|---|
committer | Moonchild <moonchild@palemoon.org> | 2020-07-08 10:50:53 +0000 |
commit | 786e344698c5a577ea82e2fa0d29faf2a2d851ea (patch) | |
tree | f089c4d296efc220266b0ac0133367747ab71e4f /dom/script/nsIScriptLoaderObserver.idl | |
parent | e378530bcaa63d46083879d746dec6b8c3a44d0b (diff) | |
download | UXP-786e344698c5a577ea82e2fa0d29faf2a2d851ea.tar UXP-786e344698c5a577ea82e2fa0d29faf2a2d851ea.tar.gz UXP-786e344698c5a577ea82e2fa0d29faf2a2d851ea.tar.lz UXP-786e344698c5a577ea82e2fa0d29faf2a2d851ea.tar.xz UXP-786e344698c5a577ea82e2fa0d29faf2a2d851ea.zip |
Issue #618 - Fix error events fired when loading JS module dependencies fail
When module dependencies fail, don't spam with errors for each import; only fire
the error event once.
Ref: BZ 1421259
Diffstat (limited to 'dom/script/nsIScriptLoaderObserver.idl')
-rw-r--r-- | dom/script/nsIScriptLoaderObserver.idl | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/dom/script/nsIScriptLoaderObserver.idl b/dom/script/nsIScriptLoaderObserver.idl index ed7196525..880738360 100644 --- a/dom/script/nsIScriptLoaderObserver.idl +++ b/dom/script/nsIScriptLoaderObserver.idl @@ -20,15 +20,16 @@ interface nsIScriptLoaderObserver : nsISupports { * a script. If this is a failure code, script evaluation * will not occur. * @param aElement The element being processed. - * @param aIsInline Is this an inline script or externally loaded? + * @param aIsInline Is this an inline classic script (as opposed to an + * externally loaded classic script or module script)? * @param aURI What is the URI of the script (the document URI if * it is inline). * @param aLineNo At what line does the script appear (generally 1 * if it is a loaded script). */ - void scriptAvailable(in nsresult aResult, + void scriptAvailable(in nsresult aResult, in nsIScriptElement aElement, - in boolean aIsInline, + in boolean aIsInlineClassicScript, in nsIURI aURI, in int32_t aLineNo); @@ -40,7 +41,7 @@ interface nsIScriptLoaderObserver : nsISupports { * @param aElement The element being processed. * @param aIsInline Is this an inline script or externally loaded? */ - void scriptEvaluated(in nsresult aResult, + void scriptEvaluated(in nsresult aResult, in nsIScriptElement aElement, in boolean aIsInline); |