diff options
Diffstat (limited to 'components/script/dom/domrect.rs')
-rw-r--r-- | components/script/dom/domrect.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/domrect.rs b/components/script/dom/domrect.rs index 258ca71ca1e..e6c7b06ddfd 100644 --- a/components/script/dom/domrect.rs +++ b/components/script/dom/domrect.rs @@ -35,7 +35,7 @@ impl DOMRect { top: Au, bottom: Au, left: Au, right: Au) -> Temporary<DOMRect> { reflect_dom_object(box DOMRect::new_inherited(top, bottom, left, right), - &global::Window(window), DOMRectBinding::Wrap) + global::Window(window), DOMRectBinding::Wrap) } } |