mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Fix servo build.
This commit is contained in:
parent
1cb235c81a
commit
6daebcc5df
18 changed files with 210 additions and 170 deletions
|
@ -14,7 +14,7 @@ use euclid::Point2D;
|
|||
use std::fmt;
|
||||
use style::logical_geometry::LogicalSize;
|
||||
use style::properties::ComputedValues;
|
||||
use style::values::computed::LengthPercentageOrAuto;
|
||||
use style::values::computed::NonNegativeLengthPercentageOrAuto;
|
||||
|
||||
#[allow(unsafe_code)]
|
||||
unsafe impl crate::flow::HasBaseFlow for TableColGroupFlow {}
|
||||
|
@ -34,7 +34,7 @@ pub struct TableColGroupFlow {
|
|||
/// The specified inline-sizes of table columns. (We use `LengthPercentageOrAuto` here in
|
||||
/// lieu of `ColumnInlineSize` because column groups do not establish minimum or preferred
|
||||
/// inline sizes.)
|
||||
pub inline_sizes: Vec<LengthPercentageOrAuto>,
|
||||
pub inline_sizes: Vec<NonNegativeLengthPercentageOrAuto>,
|
||||
}
|
||||
|
||||
impl TableColGroupFlow {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue