diff options
Diffstat (limited to 'components/script/dom/domstringlist.rs')
-rw-r--r-- | components/script/dom/domstringlist.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/domstringlist.rs b/components/script/dom/domstringlist.rs index 25c770f1e4d..f64841232e0 100644 --- a/components/script/dom/domstringlist.rs +++ b/components/script/dom/domstringlist.rs @@ -32,7 +32,7 @@ impl DOMStringList { } // https://html.spec.whatwg.org/multipage/#domstringlist -impl DOMStringListMethods for DOMStringList { +impl DOMStringListMethods<crate::DomTypeHolder> for DOMStringList { // https://html.spec.whatwg.org/multipage/#dom-domstringlist-length fn Length(&self) -> u32 { self.strings.len() as u32 |