diff options
Diffstat (limited to 'components/script/dom/imagedata.rs')
-rw-r--r-- | components/script/dom/imagedata.rs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/components/script/dom/imagedata.rs b/components/script/dom/imagedata.rs index 42638f40351..27129559475 100644 --- a/components/script/dom/imagedata.rs +++ b/components/script/dom/imagedata.rs @@ -123,7 +123,12 @@ impl ImageData { } // https://html.spec.whatwg.org/multipage/#pixel-manipulation:dom-imagedata-3 #[allow(unsafe_code, non_snake_case)] - pub fn Constructor(global: &GlobalScope, proto: Option<HandleObject>, width: u32, height: u32) -> Fallible<DomRoot<Self>> { + pub fn Constructor( + global: &GlobalScope, + proto: Option<HandleObject>, + width: u32, + height: u32, + ) -> Fallible<DomRoot<Self>> { unsafe { Self::new_without_jsobject(global, proto, width, height) } } |