diff options
author | bors-servo <metajack+bors@gmail.com> | 2014-09-25 17:48:35 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2014-09-25 17:48:35 -0600 |
commit | 9fb47b7636ca79c64acbf73a2c55cc6bf5cd4917 (patch) | |
tree | a570c461f933211a8dc03a261aedbb703ba22f0d /components/layout/flow.rs | |
parent | d9c13352c1ecfefc3a5f07871421c5d24f02c7e7 (diff) | |
parent | 9f4c2de2114311cbf17d2e3ddd96071aade44845 (diff) | |
download | servo-9fb47b7636ca79c64acbf73a2c55cc6bf5cd4917.tar.gz servo-9fb47b7636ca79c64acbf73a2c55cc6bf5cd4917.zip |
Merge pull request #3472 from pcwalton/unify-block-and-float-layout
layout: Unify the block-size computation for blocks and floats.
Reviewed-by: glennw
Diffstat (limited to 'components/layout/flow.rs')
-rw-r--r-- | components/layout/flow.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/components/layout/flow.rs b/components/layout/flow.rs index 4792c8dfc4d..47dbf7e76c2 100644 --- a/components/layout/flow.rs +++ b/components/layout/flow.rs @@ -685,9 +685,7 @@ pub struct BaseFlow { /// The children of this flow. pub children: FlowList, - /* layout computations */ - // TODO: min/pref and position are used during disjoint phases of - // layout; maybe combine into a single enum to save space. + /// Intrinsic inline sizes for this flow. pub intrinsic_inline_sizes: IntrinsicISizes, /// The upper left corner of the box representing this flow, relative to the box representing |