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 | 825c074c230430b6144fd825be96d987a6fd830b (patch) | |
tree | f089c4d296efc220266b0ac0133367747ab71e4f /dom/xslt | |
parent | 2e5dfd6b70f44ed22269adff0ef65a1515c8dc38 (diff) | |
download | aura-central-825c074c230430b6144fd825be96d987a6fd830b.tar.gz |
Issue mcp-graveyard/UXP%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/xslt')
-rw-r--r-- | dom/xslt/xslt/txMozillaXMLOutput.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/xslt/xslt/txMozillaXMLOutput.cpp b/dom/xslt/xslt/txMozillaXMLOutput.cpp index 704d8ac11..21b3c228f 100644 --- a/dom/xslt/xslt/txMozillaXMLOutput.cpp +++ b/dom/xslt/xslt/txMozillaXMLOutput.cpp @@ -955,7 +955,7 @@ NS_IMPL_ISUPPORTS(txTransformNotifier, NS_IMETHODIMP txTransformNotifier::ScriptAvailable(nsresult aResult, nsIScriptElement *aElement, - bool aIsInline, + bool aIsInlineClassicScript, nsIURI *aURI, int32_t aLineNo) { |