diff options
Diffstat (limited to 'components/script/dom/domrect.rs')
-rw-r--r-- | components/script/dom/domrect.rs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/components/script/dom/domrect.rs b/components/script/dom/domrect.rs index aa4758d2b89..086e21882c6 100644 --- a/components/script/dom/domrect.rs +++ b/components/script/dom/domrect.rs @@ -24,11 +24,17 @@ impl DOMRect { } pub fn new(global: GlobalRef, x: f64, y: f64, width: f64, height: f64) -> Root<DOMRect> { - reflect_dom_object(box DOMRect::new_inherited(x, y, width, height), global, DOMRectBinding::Wrap) + reflect_dom_object(box DOMRect::new_inherited(x, y, width, height), + global, + DOMRectBinding::Wrap) } pub fn Constructor(global: GlobalRef, - x: f64, y: f64, width: f64, height: f64) -> Fallible<Root<DOMRect>> { + x: f64, + y: f64, + width: f64, + height: f64) + -> Fallible<Root<DOMRect>> { Ok(DOMRect::new(global, x, y, width, height)) } } |