diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2014-04-14 15:22:23 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2014-04-14 15:22:23 +0100 |
commit | 583892bf6989250b2b50066eee28bf7c7c131d94 (patch) | |
tree | fc21b3c6d6d5c51592dfcefc4bad39234149060c /src | |
parent | d9c6ac5ca1e1da871de0546a6091b3b6fcf7351a (diff) | |
download | servo-583892bf6989250b2b50066eee28bf7c7c131d94.tar.gz servo-583892bf6989250b2b50066eee28bf7c7c131d94.zip |
fixup! Rename ElementType to PseudoElementType, to avoid confusion with ElementTypeId.
Diffstat (limited to 'src')
-rw-r--r-- | src/components/main/layout/construct.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/main/layout/construct.rs b/src/components/main/layout/construct.rs index e3be9167d39..b0451c363a7 100644 --- a/src/components/main/layout/construct.rs +++ b/src/components/main/layout/construct.rs @@ -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() { |