diff options
Diffstat (limited to 'components/script/dom/customelementregistry.rs')
-rw-r--r-- | components/script/dom/customelementregistry.rs | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components/script/dom/customelementregistry.rs b/components/script/dom/customelementregistry.rs index c1c60adc94c..d5eeb218d82 100644 --- a/components/script/dom/customelementregistry.rs +++ b/components/script/dom/customelementregistry.rs @@ -526,11 +526,11 @@ impl CustomElementDefinition { callbacks: LifecycleCallbacks, ) -> CustomElementDefinition { CustomElementDefinition { - name: name, - local_name: local_name, - constructor: constructor, - observed_attributes: observed_attributes, - callbacks: callbacks, + name, + local_name, + constructor, + observed_attributes, + callbacks, construction_stack: Default::default(), } } |