diff options
Diffstat (limited to 'components/script/dom/create.rs')
-rw-r--r-- | components/script/dom/create.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/create.rs b/components/script/dom/create.rs index 4e2b07399b1..2f1d35d3b59 100644 --- a/components/script/dom/create.rs +++ b/components/script/dom/create.rs @@ -174,7 +174,7 @@ pub fn create_element(name: QualName, prefix: Option<Atom>, atom!("label") => make!(HTMLLabelElement), atom!("legend") => make!(HTMLLegendElement), atom!("li") => make!(HTMLLIElement), - atom!("link") => make!(HTMLLinkElement), + atom!("link") => make!(HTMLLinkElement, creator), // https://html.spec.whatwg.org/multipage/#other-elements,-attributes-and-apis:listing atom!("listing") => make!(HTMLPreElement), atom!("main") => make!(HTMLElement), |