aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/script/dom/htmliframeelement.rs
diff options
context:
space:
mode:
authoreschweic <eschweickart@mozilla.com>2013-08-08 20:49:58 -0700
committerTim Kuehn <tkuehn@cmu.edu>2013-08-19 19:34:52 -0400
commiteb6973c7dc9de4224fe75f3b0a149a7a09392df0 (patch)
tree65313eb1f06854fc75fbb0b419bd7bdf91b5e89e /src/components/script/dom/htmliframeelement.rs
parentf2c00f7e2870c05573c18713d0d33f025d66010a (diff)
downloadservo-eb6973c7dc9de4224fe75f3b0a149a7a09392df0.tar.gz
servo-eb6973c7dc9de4224fe75f3b0a149a7a09392df0.zip
Implement epochs; fix integration bugs
Diffstat (limited to 'src/components/script/dom/htmliframeelement.rs')
-rw-r--r--src/components/script/dom/htmliframeelement.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/script/dom/htmliframeelement.rs b/src/components/script/dom/htmliframeelement.rs
index 4b8199e0bdd..288a988928a 100644
--- a/src/components/script/dom/htmliframeelement.rs
+++ b/src/components/script/dom/htmliframeelement.rs
@@ -31,7 +31,7 @@ struct IFrameSize {
impl IFrameSize {
pub fn set_rect(&mut self, rect: Rect<f32>) {
let future_chan = replace(&mut self.future_chan, None);
- do future_chan.map_consume |future_chan| {
+ do future_chan.map_move |future_chan| {
let Size2D { width, height } = rect.size;
future_chan.send(Size2D(width as uint, height as uint));
};