diff options
Diffstat (limited to 'components/script/dom/filelist.rs')
-rw-r--r-- | components/script/dom/filelist.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/dom/filelist.rs b/components/script/dom/filelist.rs index b6a650cee65..6da842ea076 100644 --- a/components/script/dom/filelist.rs +++ b/components/script/dom/filelist.rs @@ -12,7 +12,6 @@ use dom::window::Window; // https://w3c.github.io/FileAPI/#dfn-filelist #[dom_struct] -#[derive(HeapSizeOf)] pub struct FileList { reflector_: Reflector, list: Vec<JS<File>> @@ -49,4 +48,3 @@ impl<'a> FileListMethods for &'a FileList { item } } - |