fixup! Rename ElementType to PseudoElementType, to avoid confusion with ElementTypeId.

This commit is contained in:
Simon Sapin 2014-04-14 15:22:23 +01:00
parent d9c6ac5ca1
commit 583892bf69

View file

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