diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2020-01-20 20:14:59 -0500 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2020-01-26 15:50:48 -0500 |
commit | 8db81508a1ffe1c3873503a1cb2082d664714776 (patch) | |
tree | dd1ef38691c25a80787dfcdca06038a7fac18c7e /js/xpconnect | |
parent | 4083a9abf76058d35f0277dd6857478fc6715137 (diff) | |
download | uxp-8db81508a1ffe1c3873503a1cb2082d664714776.tar.gz |
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')
-rw-r--r-- | js/xpconnect/tests/mochitest/test_bug1094930.html | 6 |
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 4349493607..674edfe475 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> |