diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2020-01-20 18:13:15 -0500 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2020-01-26 15:50:47 -0500 |
commit | 7e9efb0f27d2ce3475deac31a8f8dd45213d09a9 (patch) | |
tree | 77eb3734d6a66fa2992456d364ff8b4a5c35704f /dom/base/CustomElementRegistry.cpp | |
parent | 93313b0ce3aada87f76948e6c65d455ee4998acf (diff) | |
download | UXP-7e9efb0f27d2ce3475deac31a8f8dd45213d09a9.tar UXP-7e9efb0f27d2ce3475deac31a8f8dd45213d09a9.tar.gz UXP-7e9efb0f27d2ce3475deac31a8f8dd45213d09a9.tar.lz UXP-7e9efb0f27d2ce3475deac31a8f8dd45213d09a9.tar.xz UXP-7e9efb0f27d2ce3475deac31a8f8dd45213d09a9.zip |
Bug 1405335 - Remove custom element attached and detached callbacks validation checks
Tag UXP Issue #1344
Diffstat (limited to 'dom/base/CustomElementRegistry.cpp')
-rw-r--r-- | dom/base/CustomElementRegistry.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/dom/base/CustomElementRegistry.cpp b/dom/base/CustomElementRegistry.cpp index 59e107b14..830f06fed 100644 --- a/dom/base/CustomElementRegistry.cpp +++ b/dom/base/CustomElementRegistry.cpp @@ -523,9 +523,7 @@ static const char* kLifeCycleCallbackNames[] = { "adoptedCallback", "attributeChangedCallback", // The life cycle callbacks from v0 spec. - "createdCallback", - "attachedCallback", - "detachedCallback" + "createdCallback" }; static void |