aboutsummaryrefslogtreecommitdiffstats
path: root/components/layout/construct.rs
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2014-10-14 15:42:32 -0600
committerbors-servo <metajack+bors@gmail.com>2014-10-14 15:42:32 -0600
commite2d7777c41135b71293c195d2a9d7a1bc2afd0ca (patch)
tree9bc156ffb2b2aa69da5d94fe14478cd98147162f /components/layout/construct.rs
parentc9ce56a85d6c0591f71e28c9596c19fef13b91c0 (diff)
parentc7e619dfe74adf27ae505200998ebc042091081a (diff)
downloadservo-e2d7777c41135b71293c195d2a9d7a1bc2afd0ca.tar.gz
servo-e2d7777c41135b71293c195d2a9d7a1bc2afd0ca.zip
auto merge of #3609 : pcwalton/servo/tables, r=SimonSapin
http://dbaron.org/css/intrinsic/ Column spans are not yet supported. This effectively adds support for percentage widths, and it also fixes many bugs, improving the layout of Google and Wikipedia. r? @SimonSapin
Diffstat (limited to 'components/layout/construct.rs')
-rw-r--r--components/layout/construct.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/layout/construct.rs b/components/layout/construct.rs
index 4233c565dba..7d4b6d24b81 100644
--- a/components/layout/construct.rs
+++ b/components/layout/construct.rs
@@ -767,8 +767,8 @@ impl<'a> FlowConstructor<'a> {
flow.add_new_child(anonymous_flow);
}
- /// Builds a flow for a node with `display: table`. This yields a `TableWrapperFlow` with possibly
- /// other `TableCaptionFlow`s or `TableFlow`s underneath it.
+ /// Builds a flow for a node with `display: table`. This yields a `TableWrapperFlow` with
+ /// possibly other `TableCaptionFlow`s or `TableFlow`s underneath it.
fn build_flow_for_table_wrapper(&mut self, node: &ThreadSafeLayoutNode,
float_value: float::T) -> ConstructionResult {
let fragment = Fragment::new_from_specific_info(node, TableWrapperFragment);