mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
This used to be a struct that had a list of `CollapsedBorder`s, and the maximum border width among that list. However, this cached maximum border width was only used when resolving the borders of the table. Therefore, for all grid lines except the first and last ones per axis, this data was useless. Also, in order to address #35123 I plan to retroactively zero out some collapsed borders, which could invalidate this cache. So this patch just removes the field and turns `CollapsedBorderLine` into an alias of `Vec<CollapsedBorder>`. Signed-off-by: Oriol Brufau <obrufau@igalia.com> |
||
---|---|---|
.. | ||
construct.rs | ||
layout.rs | ||
mod.rs |