aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/main/servo.rs
diff options
context:
space:
mode:
authorbors-servo <release+servo@mozilla.com>2014-02-27 15:01:49 -0500
committerbors-servo <release+servo@mozilla.com>2014-02-27 15:01:49 -0500
commit580c23f35bd7c43498d61fec04745cedabb8246a (patch)
treecda39bd77777f3e5347ee4f6351d5d388c856888 /src/components/main/servo.rs
parentb7fb97cf5a29a018476aada14a477f8605011be2 (diff)
parent014cf702e41363780bd67589f0ea1994b8756f1a (diff)
downloadservo-580c23f35bd7c43498d61fec04745cedabb8246a.tar.gz
servo-580c23f35bd7c43498d61fec04745cedabb8246a.zip
auto merge of #1770 : pcwalton/servo/rewrite-float-context, r=kmcallister
This rewrites the float context to avoid dynamic failures resulting from `.clone()` misuse. It also renames the float context to the simpler `Floats`. The new version is modeled on WebKit's `FloatingObjects`. r? @kmcallister
Diffstat (limited to 'src/components/main/servo.rs')
-rwxr-xr-xsrc/components/main/servo.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/main/servo.rs b/src/components/main/servo.rs
index a176fbb71f6..450e5b32b4d 100755
--- a/src/components/main/servo.rs
+++ b/src/components/main/servo.rs
@@ -90,7 +90,7 @@ pub mod layout {
pub mod construct;
pub mod context;
pub mod display_list_builder;
- pub mod float_context;
+ pub mod floats;
pub mod flow;
pub mod flow_list;
pub mod layout_task;