auto merge of #2221 : hazz/servo/normalize, r=jdm

Fixes #2170 by recursively calling `normalize()` on all children that aren't text nodes.
This commit is contained in:
bors-servo 2014-04-24 12:58:16 -04:00
commit b193767350

View file

@ -1590,6 +1590,8 @@ impl Node {
}
}
} else {
let c = &mut child.clone();
child.get_mut().Normalize(c);
prev_text = None;
}