aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2014-04-14 15:22:23 +0100
committerSimon Sapin <simon.sapin@exyr.org>2014-04-14 15:22:23 +0100
commit583892bf6989250b2b50066eee28bf7c7c131d94 (patch)
treefc21b3c6d6d5c51592dfcefc4bad39234149060c /src
parentd9c6ac5ca1e1da871de0546a6091b3b6fcf7351a (diff)
downloadservo-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.rs2
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() {