Remove the unused FloatedBlockInfo::index field.

This commit is contained in:
Ms2ger 2015-03-28 22:42:14 +01:00
parent da1e3a3f11
commit d521cd006e

View file

@ -72,9 +72,6 @@ pub struct FloatedBlockInfo {
/// box). /// box).
pub float_ceiling: Au, pub float_ceiling: Au,
/// Index into the fragment list for inline floats
pub index: Option<uint>,
/// Left or right? /// Left or right?
pub float_kind: FloatKind, pub float_kind: FloatKind,
} }
@ -84,7 +81,6 @@ impl FloatedBlockInfo {
FloatedBlockInfo { FloatedBlockInfo {
containing_inline_size: Au(0), containing_inline_size: Au(0),
float_ceiling: Au(0), float_ceiling: Au(0),
index: None,
float_kind: float_kind, float_kind: float_kind,
} }
} }