summaryrefslogtreecommitdiffstats
path: root/dom/base/nsDocument.cpp
diff options
context:
space:
mode:
authorGaming4JC <g4jc@hyperbola.info>2020-01-20 20:14:59 -0500
committerGaming4JC <g4jc@hyperbola.info>2020-01-26 15:50:48 -0500
commit8db81508a1ffe1c3873503a1cb2082d664714776 (patch)
treedd1ef38691c25a80787dfcdca06038a7fac18c7e /dom/base/nsDocument.cpp
parent4083a9abf76058d35f0277dd6857478fc6715137 (diff)
downloadUXP-8db81508a1ffe1c3873503a1cb2082d664714776.tar
UXP-8db81508a1ffe1c3873503a1cb2082d664714776.tar.gz
UXP-8db81508a1ffe1c3873503a1cb2082d664714776.tar.lz
UXP-8db81508a1ffe1c3873503a1cb2082d664714776.tar.xz
UXP-8db81508a1ffe1c3873503a1cb2082d664714776.zip
Bug 1415761 - Catch the exception and rethrow it after invoking custom elements reactions;
The spec was unclear on how CEReactions interact with thrown exceptions; see https://github.com/whatwg/html/issues/3217. The spec is now being clarified in https://github.com/whatwg/html/pull/3235. Tag UXP Issue #1344
Diffstat (limited to 'dom/base/nsDocument.cpp')
-rw-r--r--dom/base/nsDocument.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/dom/base/nsDocument.cpp b/dom/base/nsDocument.cpp
index 9043e409a..f3e492589 100644
--- a/dom/base/nsDocument.cpp
+++ b/dom/base/nsDocument.cpp
@@ -5809,7 +5809,8 @@ nsDocument::RegisterElement(JSContext* aCx, const nsAString& aType,
return;
}
- AutoCEReaction ceReaction(this->GetDocGroup()->CustomElementReactionsStack());
+ AutoCEReaction ceReaction(this->GetDocGroup()->CustomElementReactionsStack(),
+ aCx);
// Unconditionally convert TYPE to lowercase.
nsAutoString lcType;
nsContentUtils::ASCIIToLower(aType, lcType);