diff options
Diffstat (limited to 'components/script/dom/radionodelist.rs')
-rw-r--r-- | components/script/dom/radionodelist.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/radionodelist.rs b/components/script/dom/radionodelist.rs index 9ada855850a..e5257d8a770 100644 --- a/components/script/dom/radionodelist.rs +++ b/components/script/dom/radionodelist.rs @@ -24,14 +24,14 @@ pub struct RadioNodeList { } impl RadioNodeList { - #[allow(unrooted_must_root)] + #[allow(crown::unrooted_must_root)] fn new_inherited(list_type: NodeListType) -> RadioNodeList { RadioNodeList { node_list: NodeList::new_inherited(list_type), } } - #[allow(unrooted_must_root)] + #[allow(crown::unrooted_must_root)] pub fn new(window: &Window, list_type: NodeListType) -> DomRoot<RadioNodeList> { reflect_dom_object(Box::new(RadioNodeList::new_inherited(list_type)), window) } |