diff options
author | Gaming4JC <g4jc@hyperbola.info> | 2020-01-20 19:49:20 -0500 |
---|---|---|
committer | Gaming4JC <g4jc@hyperbola.info> | 2020-01-26 15:50:48 -0500 |
commit | f576d8f0fe2a2203e6ad5fdd1a319b8991322756 (patch) | |
tree | f483b62147c74b621e4f2032f31bee2c9cae5a84 /dom/webidl | |
parent | 37d09da24e6c97e3f05ad344893f9b9513ba58ff (diff) | |
download | UXP-f576d8f0fe2a2203e6ad5fdd1a319b8991322756.tar UXP-f576d8f0fe2a2203e6ad5fdd1a319b8991322756.tar.gz UXP-f576d8f0fe2a2203e6ad5fdd1a319b8991322756.tar.lz UXP-f576d8f0fe2a2203e6ad5fdd1a319b8991322756.tar.xz UXP-f576d8f0fe2a2203e6ad5fdd1a319b8991322756.zip |
Bug 1396620 - Part 1: Remove created callback for custom elements
Tag UXP Issue #1344
Diffstat (limited to 'dom/webidl')
-rw-r--r-- | dom/webidl/WebComponents.webidl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/dom/webidl/WebComponents.webidl b/dom/webidl/WebComponents.webidl index 008f59410..f9bb8214a 100644 --- a/dom/webidl/WebComponents.webidl +++ b/dom/webidl/WebComponents.webidl @@ -10,7 +10,6 @@ * liability, trademark and document use rules apply. */ -callback LifecycleCreatedCallback = void(); callback LifecycleConnectedCallback = void(); callback LifecycleDisconnectedCallback = void(); callback LifecycleAdoptedCallback = void(Document? oldDocument, @@ -21,7 +20,6 @@ callback LifecycleAttributeChangedCallback = void(DOMString attrName, DOMString? namespaceURI); dictionary LifecycleCallbacks { - LifecycleCreatedCallback? createdCallback; LifecycleConnectedCallback? connectedCallback; LifecycleDisconnectedCallback? disconnectedCallback; LifecycleAdoptedCallback? adoptedCallback; |