summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests
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 /js/xpconnect/tests
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 'js/xpconnect/tests')
-rw-r--r--js/xpconnect/tests/mochitest/test_bug1094930.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/js/xpconnect/tests/mochitest/test_bug1094930.html b/js/xpconnect/tests/mochitest/test_bug1094930.html
index 434949360..674edfe47 100644
--- a/js/xpconnect/tests/mochitest/test_bug1094930.html
+++ b/js/xpconnect/tests/mochitest/test_bug1094930.html
@@ -16,14 +16,14 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=1094930
<script type="application/javascript">
SimpleTest.waitForExplicitFinish();
var proto = {
- createdCallback: function() {
- ok(true, "createdCallback was called");
+ connectedCallback: function() {
+ ok(true, "connectedCallback was called");
SimpleTest.finish()
}
};
var f = document.registerElement.call(frames[0].document, "x-foo", { prototype: proto });
- var inst = new f();
+ frames[0].document.firstChild.appendChild(new f());
</script>
</body>
</html>