aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/htmlstyleelement.rs
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2014-09-29 06:47:45 +0530
committerManish Goregaokar <manishsmail@gmail.com>2014-10-05 22:53:50 +0530
commit707a2870fa5a7c10dad49a8ab0db39c7e568f1c6 (patch)
tree17bb1de1bdfcb14d356f0e24c7ac55d72ae991aa /components/script/dom/htmlstyleelement.rs
parent22567762a0d1a6f77f770b488f60adb14150843d (diff)
downloadservo-707a2870fa5a7c10dad49a8ab0db39c7e568f1c6.tar.gz
servo-707a2870fa5a7c10dad49a8ab0db39c7e568f1c6.zip
Remove Traceable/Untraceable from page.rs
Diffstat (limited to 'components/script/dom/htmlstyleelement.rs')
-rw-r--r--components/script/dom/htmlstyleelement.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlstyleelement.rs b/components/script/dom/htmlstyleelement.rs
index f98be5f3e08..a4bc3ace264 100644
--- a/components/script/dom/htmlstyleelement.rs
+++ b/components/script/dom/htmlstyleelement.rs
@@ -57,7 +57,7 @@ impl<'a> StyleElementHelpers for JSRef<'a, HTMLStyleElement> {
let data = node.GetTextContent().expect("Element.textContent must be a string");
let sheet = Stylesheet::from_str(data.as_slice(), url);
- let LayoutChan(ref layout_chan) = *win.deref().page().layout_chan;
+ let LayoutChan(ref layout_chan) = win.deref().page().layout_chan;
layout_chan.send(AddStylesheetMsg(sheet));
}
}