inline pseudo element

This commit is contained in:
hyunjunekim 2014-04-09 09:00:32 +09:00
parent 51ff762bc5
commit 5c15f24308

View file

@ -558,6 +558,9 @@ impl<'a> FlowConstructor<'a> {
// Concatenate all the boxes of our kids, creating {ib} splits as necessary. // Concatenate all the boxes of our kids, creating {ib} splits as necessary.
for kid in node.children() { for kid in node.children() {
if kid.get_element_type() != Normal {
self.process(&kid);
}
match kid.swap_out_construction_result() { match kid.swap_out_construction_result() {
NoConstructionResult => {} NoConstructionResult => {}
FlowConstructionResult(flow, kid_abs_descendants) => { FlowConstructionResult(flow, kid_abs_descendants) => {