This commit is contained in:
Nico Burns 2025-06-04 15:20:48 +02:00 committed by GitHub
commit b78aebb6dd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 111 additions and 106 deletions

8
Cargo.lock generated
View file

@ -2754,9 +2754,9 @@ dependencies = [
[[package]] [[package]]
name = "grid" name = "grid"
version = "0.15.0" version = "0.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36119f3a540b086b4e436bb2b588cf98a68863470e0e880f4d0842f112a3183a" checksum = "fb6ae361963ea5fe52038156ea1729f3b4e4ccc0711c362ab2b2d2c0a259e7c3"
[[package]] [[package]]
name = "gstreamer" name = "gstreamer"
@ -7607,9 +7607,9 @@ dependencies = [
[[package]] [[package]]
name = "taffy" name = "taffy"
version = "0.7.7" version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab4f4d046dd956a47a7e1a2947083d7ac3e6aa3cfaaead36173ceaa5ab11878c" checksum = "d3a277fb10dee4bcb218810ad1d690077310ca3eb2d628f5ab368f6a079f6a65"
dependencies = [ dependencies = [
"arrayvec", "arrayvec",
"grid", "grid",

View file

@ -145,7 +145,7 @@ stylo_traits = { git = "https://github.com/servo/stylo", branch = "2025-05-01" }
surfman = { git = "https://github.com/servo/surfman", rev = "f7688b4585f9e0b5d4bf8ee8e4a91e82349610b1", features = ["chains"] } surfman = { git = "https://github.com/servo/surfman", rev = "f7688b4585f9e0b5d4bf8ee8e4a91e82349610b1", features = ["chains"] }
syn = { version = "2", default-features = false, features = ["clone-impls", "derive", "parsing"] } syn = { version = "2", default-features = false, features = ["clone-impls", "derive", "parsing"] }
synstructure = "0.13" synstructure = "0.13"
taffy = { version = "0.7.7", default-features = false, features = ["detailed_layout_info", "grid", "serde", "std"] } taffy = { version = "0.8.1", default-features = false, features = ["detailed_layout_info", "grid", "serde", "std"] }
thin-vec = "0.2.14" thin-vec = "0.2.14"
tikv-jemalloc-sys = "0.6.0" tikv-jemalloc-sys = "0.6.0"
tikv-jemallocator = "0.6.0" tikv-jemallocator = "0.6.0"

View file

@ -107,7 +107,7 @@ impl taffy::LayoutPartialTree for TaffyContainerContext<'_> {
Self: 'a; Self: 'a;
fn get_core_container_style(&self, _node_id: taffy::NodeId) -> Self::CoreContainerStyle<'_> { fn get_core_container_style(&self, _node_id: taffy::NodeId) -> Self::CoreContainerStyle<'_> {
TaffyStyloStyle(self.style) TaffyStyloStyle::new(self.style, false /* is_replaced */)
} }
fn set_unrounded_layout(&mut self, node_id: taffy::NodeId, layout: &taffy::Layout) { fn set_unrounded_layout(&mut self, node_id: taffy::NodeId, layout: &taffy::Layout) {
@ -311,7 +311,7 @@ impl taffy::LayoutGridContainer for TaffyContainerContext<'_> {
&self, &self,
_node_id: taffy::prelude::NodeId, _node_id: taffy::prelude::NodeId,
) -> Self::GridContainerStyle<'_> { ) -> Self::GridContainerStyle<'_> {
TaffyStyloStyle(self.style) TaffyStyloStyle::new(self.style, false /* is_replaced */)
} }
fn get_grid_child_style( fn get_grid_child_style(
@ -320,7 +320,10 @@ impl taffy::LayoutGridContainer for TaffyContainerContext<'_> {
) -> Self::GridItemStyle<'_> { ) -> Self::GridItemStyle<'_> {
let id = usize::from(child_node_id); let id = usize::from(child_node_id);
let child = (*self.source_child_nodes[id]).borrow(); let child = (*self.source_child_nodes[id]).borrow();
TaffyStyloStyle(AtomicRef::map(child, |c| &*c.style)) // TODO: account for non-replaced elements that are "compressible replaced"
let is_replaced = child.is_in_flow_replaced();
let stylo_style = AtomicRef::map(child, |c| &*c.style);
TaffyStyloStyle::new(stylo_style, is_replaced)
} }
fn set_detailed_grid_info( fn set_detailed_grid_info(

View file

@ -19,7 +19,9 @@ use crate::construct_modern::{ModernContainerBuilder, ModernItemKind};
use crate::context::LayoutContext; use crate::context::LayoutContext;
use crate::dom::LayoutBox; use crate::dom::LayoutBox;
use crate::dom_traversal::{NodeAndStyleInfo, NonReplacedContents}; use crate::dom_traversal::{NodeAndStyleInfo, NonReplacedContents};
use crate::formatting_contexts::IndependentFormattingContext; use crate::formatting_contexts::{
IndependentFormattingContext, IndependentFormattingContextContents,
};
use crate::fragment_tree::Fragment; use crate::fragment_tree::Fragment;
use crate::positioned::{AbsolutelyPositionedBox, PositioningContext}; use crate::positioned::{AbsolutelyPositionedBox, PositioningContext};
@ -166,6 +168,16 @@ impl TaffyItemBox {
.repair_style(context, node, new_style), .repair_style(context, node, new_style),
} }
} }
fn is_in_flow_replaced(&self) -> bool {
match &self.taffy_level_box {
TaffyItemBoxInner::InFlowBox(fc) => match fc.contents {
IndependentFormattingContextContents::NonReplaced(_) => false,
IndependentFormattingContextContents::Replaced(_) => true,
},
TaffyItemBoxInner::OutOfFlowAbsolutelyPositionedBox(_) => false,
}
}
} }
/// Details from Taffy grid layout that will be stored /// Details from Taffy grid layout that will be stored

View file

@ -7,6 +7,7 @@ mod stylo {
pub(crate) use style::properties::generated::longhands::box_sizing::computed_value::T as BoxSizing; pub(crate) use style::properties::generated::longhands::box_sizing::computed_value::T as BoxSizing;
pub(crate) use style::properties::longhands::aspect_ratio::computed_value::T as AspectRatio; pub(crate) use style::properties::longhands::aspect_ratio::computed_value::T as AspectRatio;
pub(crate) use style::properties::longhands::position::computed_value::T as Position; pub(crate) use style::properties::longhands::position::computed_value::T as Position;
pub(crate) use style::values::computed::length_percentage::Unpacked as UnpackedLengthPercentage;
pub(crate) use style::values::computed::{LengthPercentage, Percentage}; pub(crate) use style::values::computed::{LengthPercentage, Percentage};
pub(crate) use style::values::generics::NonNegative; pub(crate) use style::values::generics::NonNegative;
pub(crate) use style::values::generics::length::{ pub(crate) use style::values::generics::length::{
@ -32,15 +33,15 @@ mod stylo {
pub(crate) use style::values::specified::GenericGridTemplateComponent; pub(crate) use style::values::specified::GenericGridTemplateComponent;
} }
use taffy::MaxTrackSizingFunction;
use taffy::style_helpers::*;
#[inline] #[inline]
pub fn length_percentage(val: &stylo::LengthPercentage) -> taffy::LengthPercentage { pub fn length_percentage(val: &stylo::LengthPercentage) -> taffy::LengthPercentage {
if let Some(length) = val.to_length() { match val.unpack() {
taffy::LengthPercentage::Length(length.px()) stylo::UnpackedLengthPercentage::Length(len) => length(len.px()),
} else if let Some(val) = val.to_percentage() { stylo::UnpackedLengthPercentage::Percentage(percentage) => percent(percentage.0),
taffy::LengthPercentage::Percent(val.0) stylo::UnpackedLengthPercentage::Calc(_) => percent(0.0),
} else {
// TODO: Support calc
taffy::LengthPercentage::Percent(0.0)
} }
} }
@ -48,14 +49,14 @@ pub fn length_percentage(val: &stylo::LengthPercentage) -> taffy::LengthPercenta
pub fn dimension(val: &stylo::Size) -> taffy::Dimension { pub fn dimension(val: &stylo::Size) -> taffy::Dimension {
match val { match val {
stylo::Size::LengthPercentage(val) => length_percentage(&val.0).into(), stylo::Size::LengthPercentage(val) => length_percentage(&val.0).into(),
stylo::Size::Auto => taffy::Dimension::Auto, stylo::Size::Auto => taffy::Dimension::AUTO,
// TODO: implement other values in Taffy // TODO: implement other values in Taffy
stylo::Size::MaxContent => taffy::Dimension::Auto, stylo::Size::MaxContent => taffy::Dimension::AUTO,
stylo::Size::MinContent => taffy::Dimension::Auto, stylo::Size::MinContent => taffy::Dimension::AUTO,
stylo::Size::FitContent => taffy::Dimension::Auto, stylo::Size::FitContent => taffy::Dimension::AUTO,
stylo::Size::FitContentFunction(_) => taffy::Dimension::Auto, stylo::Size::FitContentFunction(_) => taffy::Dimension::AUTO,
stylo::Size::Stretch => taffy::Dimension::Auto, stylo::Size::Stretch => taffy::Dimension::AUTO,
// Anchor positioning will be flagged off for time being // Anchor positioning will be flagged off for time being
stylo::Size::AnchorSizeFunction(_) => unreachable!(), stylo::Size::AnchorSizeFunction(_) => unreachable!(),
@ -67,14 +68,14 @@ pub fn dimension(val: &stylo::Size) -> taffy::Dimension {
pub fn max_size_dimension(val: &stylo::MaxSize) -> taffy::Dimension { pub fn max_size_dimension(val: &stylo::MaxSize) -> taffy::Dimension {
match val { match val {
stylo::MaxSize::LengthPercentage(val) => length_percentage(&val.0).into(), stylo::MaxSize::LengthPercentage(val) => length_percentage(&val.0).into(),
stylo::MaxSize::None => taffy::Dimension::Auto, stylo::MaxSize::None => taffy::Dimension::AUTO,
// TODO: implement other values in Taffy // TODO: implement other values in Taffy
stylo::MaxSize::MaxContent => taffy::Dimension::Auto, stylo::MaxSize::MaxContent => taffy::Dimension::AUTO,
stylo::MaxSize::MinContent => taffy::Dimension::Auto, stylo::MaxSize::MinContent => taffy::Dimension::AUTO,
stylo::MaxSize::FitContent => taffy::Dimension::Auto, stylo::MaxSize::FitContent => taffy::Dimension::AUTO,
stylo::MaxSize::FitContentFunction(_) => taffy::Dimension::Auto, stylo::MaxSize::FitContentFunction(_) => taffy::Dimension::AUTO,
stylo::MaxSize::Stretch => taffy::Dimension::Auto, stylo::MaxSize::Stretch => taffy::Dimension::AUTO,
// Anchor positioning will be flagged off for time being // Anchor positioning will be flagged off for time being
stylo::MaxSize::AnchorSizeFunction(_) => unreachable!(), stylo::MaxSize::AnchorSizeFunction(_) => unreachable!(),
@ -85,7 +86,7 @@ pub fn max_size_dimension(val: &stylo::MaxSize) -> taffy::Dimension {
#[inline] #[inline]
pub fn margin(val: &stylo::MarginVal) -> taffy::LengthPercentageAuto { pub fn margin(val: &stylo::MarginVal) -> taffy::LengthPercentageAuto {
match val { match val {
stylo::MarginVal::Auto => taffy::LengthPercentageAuto::Auto, stylo::MarginVal::Auto => taffy::LengthPercentageAuto::AUTO,
stylo::MarginVal::LengthPercentage(val) => length_percentage(val).into(), stylo::MarginVal::LengthPercentage(val) => length_percentage(val).into(),
// Anchor positioning will be flagged off for time being // Anchor positioning will be flagged off for time being
@ -97,7 +98,7 @@ pub fn margin(val: &stylo::MarginVal) -> taffy::LengthPercentageAuto {
#[inline] #[inline]
pub fn inset(val: &stylo::InsetVal) -> taffy::LengthPercentageAuto { pub fn inset(val: &stylo::InsetVal) -> taffy::LengthPercentageAuto {
match val { match val {
stylo::InsetVal::Auto => taffy::LengthPercentageAuto::Auto, stylo::InsetVal::Auto => taffy::LengthPercentageAuto::AUTO,
stylo::InsetVal::LengthPercentage(val) => length_percentage(val).into(), stylo::InsetVal::LengthPercentage(val) => length_percentage(val).into(),
// Anchor positioning will be flagged off for time being // Anchor positioning will be flagged off for time being
@ -214,7 +215,7 @@ pub fn gap(input: &stylo::Gap) -> taffy::LengthPercentage {
match input { match input {
// For Flexbox and CSS Grid the "normal" value is 0px. This may need to be updated // For Flexbox and CSS Grid the "normal" value is 0px. This may need to be updated
// if we ever implement multi-column layout. // if we ever implement multi-column layout.
stylo::Gap::Normal => taffy::LengthPercentage::Length(0.0), stylo::Gap::Normal => taffy::LengthPercentage::ZERO,
stylo::Gap::LengthPercentage(val) => length_percentage(&val.0), stylo::Gap::LengthPercentage(val) => length_percentage(&val.0),
} }
} }
@ -306,16 +307,18 @@ pub fn track_size(
max: max_track(max), max: max_track(max),
}, },
stylo::TrackSize::FitContent(limit) => taffy::MinMax { stylo::TrackSize::FitContent(limit) => taffy::MinMax {
min: taffy::MinTrackSizingFunction::Auto, min: taffy::MinTrackSizingFunction::AUTO,
max: taffy::MaxTrackSizingFunction::FitContent(match limit { max: match limit {
stylo::TrackBreadth::Breadth(lp) => length_percentage(lp), stylo::TrackBreadth::Breadth(lp) => {
MaxTrackSizingFunction::fit_content(length_percentage(lp))
},
// Are these valid? Taffy doesn't support this in any case // Are these valid? Taffy doesn't support this in any case
stylo::TrackBreadth::Fr(_) => unreachable!(), stylo::TrackBreadth::Fr(_) => unreachable!(),
stylo::TrackBreadth::Auto => unreachable!(), stylo::TrackBreadth::Auto => unreachable!(),
stylo::TrackBreadth::MinContent => unreachable!(), stylo::TrackBreadth::MinContent => unreachable!(),
stylo::TrackBreadth::MaxContent => unreachable!(), stylo::TrackBreadth::MaxContent => unreachable!(),
}), },
}, },
} }
} }
@ -325,13 +328,11 @@ pub fn min_track(
input: &stylo::TrackBreadth<stylo::LengthPercentage>, input: &stylo::TrackBreadth<stylo::LengthPercentage>,
) -> taffy::MinTrackSizingFunction { ) -> taffy::MinTrackSizingFunction {
match input { match input {
stylo::TrackBreadth::Breadth(lp) => { stylo::TrackBreadth::Breadth(lp) => length_percentage(lp).into(),
taffy::MinTrackSizingFunction::Fixed(length_percentage(lp)) stylo::TrackBreadth::Fr(_) => taffy::MinTrackSizingFunction::AUTO,
}, stylo::TrackBreadth::Auto => taffy::MinTrackSizingFunction::AUTO,
stylo::TrackBreadth::Fr(_) => taffy::MinTrackSizingFunction::Auto, stylo::TrackBreadth::MinContent => taffy::MinTrackSizingFunction::MIN_CONTENT,
stylo::TrackBreadth::Auto => taffy::MinTrackSizingFunction::Auto, stylo::TrackBreadth::MaxContent => taffy::MinTrackSizingFunction::MAX_CONTENT,
stylo::TrackBreadth::MinContent => taffy::MinTrackSizingFunction::MinContent,
stylo::TrackBreadth::MaxContent => taffy::MinTrackSizingFunction::MaxContent,
} }
} }
@ -340,12 +341,10 @@ pub fn max_track(
input: &stylo::TrackBreadth<stylo::LengthPercentage>, input: &stylo::TrackBreadth<stylo::LengthPercentage>,
) -> taffy::MaxTrackSizingFunction { ) -> taffy::MaxTrackSizingFunction {
match input { match input {
stylo::TrackBreadth::Breadth(lp) => { stylo::TrackBreadth::Breadth(lp) => length_percentage(lp).into(),
taffy::MaxTrackSizingFunction::Fixed(length_percentage(lp)) stylo::TrackBreadth::Fr(val) => fr(*val),
}, stylo::TrackBreadth::Auto => taffy::MaxTrackSizingFunction::AUTO,
stylo::TrackBreadth::Fr(val) => taffy::MaxTrackSizingFunction::Fraction(*val), stylo::TrackBreadth::MinContent => taffy::MaxTrackSizingFunction::MIN_CONTENT,
stylo::TrackBreadth::Auto => taffy::MaxTrackSizingFunction::Auto, stylo::TrackBreadth::MaxContent => taffy::MaxTrackSizingFunction::MAX_CONTENT,
stylo::TrackBreadth::MinContent => taffy::MaxTrackSizingFunction::MinContent,
stylo::TrackBreadth::MaxContent => taffy::MaxTrackSizingFunction::MaxContent,
} }
} }

View file

@ -10,33 +10,44 @@ use super::convert;
/// A wrapper struct for anything that Deref's to a [`ComputedValues`], which /// A wrapper struct for anything that Deref's to a [`ComputedValues`], which
/// implements Taffy's layout traits and can used with Taffy's layout algorithms. /// implements Taffy's layout traits and can used with Taffy's layout algorithms.
pub struct TaffyStyloStyle<T: Deref<Target = ComputedValues>>(pub T); pub struct TaffyStyloStyle<T: Deref<Target = ComputedValues>> {
pub style: T,
pub is_compressible_replaced: bool,
}
impl<T: Deref<Target = ComputedValues>> From<T> for TaffyStyloStyle<T> { impl<T: Deref<Target = ComputedValues>> TaffyStyloStyle<T> {
fn from(value: T) -> Self { pub fn new(style: T, is_compressible_replaced: bool) -> Self {
Self(value) Self {
style,
is_compressible_replaced,
}
} }
} }
impl<T: Deref<Target = ComputedValues>> taffy::CoreStyle for TaffyStyloStyle<T> { impl<T: Deref<Target = ComputedValues>> taffy::CoreStyle for TaffyStyloStyle<T> {
#[inline] #[inline]
fn box_generation_mode(&self) -> taffy::BoxGenerationMode { fn box_generation_mode(&self) -> taffy::BoxGenerationMode {
convert::box_generation_mode(self.0.get_box().display) convert::box_generation_mode(self.style.get_box().display)
} }
#[inline] #[inline]
fn is_block(&self) -> bool { fn is_block(&self) -> bool {
convert::is_block(self.0.get_box().display) convert::is_block(self.style.get_box().display)
}
#[inline]
fn is_compressible_replaced(&self) -> bool {
self.is_compressible_replaced
} }
#[inline] #[inline]
fn box_sizing(&self) -> taffy::BoxSizing { fn box_sizing(&self) -> taffy::BoxSizing {
convert::box_sizing(self.0.get_position().box_sizing) convert::box_sizing(self.style.get_position().box_sizing)
} }
#[inline] #[inline]
fn overflow(&self) -> taffy::Point<taffy::Overflow> { fn overflow(&self) -> taffy::Point<taffy::Overflow> {
let box_styles = self.0.get_box(); let box_styles = self.style.get_box();
taffy::Point { taffy::Point {
x: convert::overflow(box_styles.overflow_x), x: convert::overflow(box_styles.overflow_x),
y: convert::overflow(box_styles.overflow_y), y: convert::overflow(box_styles.overflow_y),
@ -50,12 +61,12 @@ impl<T: Deref<Target = ComputedValues>> taffy::CoreStyle for TaffyStyloStyle<T>
#[inline] #[inline]
fn position(&self) -> taffy::Position { fn position(&self) -> taffy::Position {
convert::position(self.0.get_box().position) convert::position(self.style.get_box().position)
} }
#[inline] #[inline]
fn inset(&self) -> taffy::Rect<taffy::LengthPercentageAuto> { fn inset(&self) -> taffy::Rect<taffy::LengthPercentageAuto> {
let position_styles = self.0.get_position(); let position_styles = self.style.get_position();
taffy::Rect { taffy::Rect {
left: convert::inset(&position_styles.left), left: convert::inset(&position_styles.left),
right: convert::inset(&position_styles.right), right: convert::inset(&position_styles.right),
@ -66,7 +77,7 @@ impl<T: Deref<Target = ComputedValues>> taffy::CoreStyle for TaffyStyloStyle<T>
#[inline] #[inline]
fn size(&self) -> taffy::Size<taffy::Dimension> { fn size(&self) -> taffy::Size<taffy::Dimension> {
let position_styles = self.0.get_position(); let position_styles = self.style.get_position();
taffy::Size { taffy::Size {
width: convert::dimension(&position_styles.width), width: convert::dimension(&position_styles.width),
height: convert::dimension(&position_styles.height), height: convert::dimension(&position_styles.height),
@ -75,7 +86,7 @@ impl<T: Deref<Target = ComputedValues>> taffy::CoreStyle for TaffyStyloStyle<T>
#[inline] #[inline]
fn min_size(&self) -> taffy::Size<taffy::Dimension> { fn min_size(&self) -> taffy::Size<taffy::Dimension> {
let position_styles = self.0.get_position(); let position_styles = self.style.get_position();
taffy::Size { taffy::Size {
width: convert::dimension(&position_styles.min_width), width: convert::dimension(&position_styles.min_width),
height: convert::dimension(&position_styles.min_height), height: convert::dimension(&position_styles.min_height),
@ -84,7 +95,7 @@ impl<T: Deref<Target = ComputedValues>> taffy::CoreStyle for TaffyStyloStyle<T>
#[inline] #[inline]
fn max_size(&self) -> taffy::Size<taffy::Dimension> { fn max_size(&self) -> taffy::Size<taffy::Dimension> {
let position_styles = self.0.get_position(); let position_styles = self.style.get_position();
taffy::Size { taffy::Size {
width: convert::max_size_dimension(&position_styles.max_width), width: convert::max_size_dimension(&position_styles.max_width),
height: convert::max_size_dimension(&position_styles.max_height), height: convert::max_size_dimension(&position_styles.max_height),
@ -93,12 +104,12 @@ impl<T: Deref<Target = ComputedValues>> taffy::CoreStyle for TaffyStyloStyle<T>
#[inline] #[inline]
fn aspect_ratio(&self) -> Option<f32> { fn aspect_ratio(&self) -> Option<f32> {
convert::aspect_ratio(self.0.get_position().aspect_ratio) convert::aspect_ratio(self.style.get_position().aspect_ratio)
} }
#[inline] #[inline]
fn margin(&self) -> taffy::Rect<taffy::LengthPercentageAuto> { fn margin(&self) -> taffy::Rect<taffy::LengthPercentageAuto> {
let margin_styles = self.0.get_margin(); let margin_styles = self.style.get_margin();
taffy::Rect { taffy::Rect {
left: convert::margin(&margin_styles.margin_left), left: convert::margin(&margin_styles.margin_left),
right: convert::margin(&margin_styles.margin_right), right: convert::margin(&margin_styles.margin_right),
@ -109,7 +120,7 @@ impl<T: Deref<Target = ComputedValues>> taffy::CoreStyle for TaffyStyloStyle<T>
#[inline] #[inline]
fn padding(&self) -> taffy::Rect<taffy::LengthPercentage> { fn padding(&self) -> taffy::Rect<taffy::LengthPercentage> {
let padding_styles = self.0.get_padding(); let padding_styles = self.style.get_padding();
taffy::Rect { taffy::Rect {
left: convert::length_percentage(&padding_styles.padding_left.0), left: convert::length_percentage(&padding_styles.padding_left.0),
right: convert::length_percentage(&padding_styles.padding_right.0), right: convert::length_percentage(&padding_styles.padding_right.0),
@ -120,12 +131,12 @@ impl<T: Deref<Target = ComputedValues>> taffy::CoreStyle for TaffyStyloStyle<T>
#[inline] #[inline]
fn border(&self) -> taffy::Rect<taffy::LengthPercentage> { fn border(&self) -> taffy::Rect<taffy::LengthPercentage> {
let border_styles = self.0.get_border(); let border_styles = self.style.get_border();
taffy::Rect { taffy::Rect {
left: taffy::LengthPercentage::Length(border_styles.border_left_width.to_f32_px()), left: taffy::LengthPercentage::length(border_styles.border_left_width.to_f32_px()),
right: taffy::LengthPercentage::Length(border_styles.border_right_width.to_f32_px()), right: taffy::LengthPercentage::length(border_styles.border_right_width.to_f32_px()),
top: taffy::LengthPercentage::Length(border_styles.border_top_width.to_f32_px()), top: taffy::LengthPercentage::length(border_styles.border_top_width.to_f32_px()),
bottom: taffy::LengthPercentage::Length(border_styles.border_bottom_width.to_f32_px()), bottom: taffy::LengthPercentage::length(border_styles.border_bottom_width.to_f32_px()),
} }
} }
} }
@ -142,32 +153,32 @@ impl<T: Deref<Target = ComputedValues>> taffy::GridContainerStyle for TaffyStylo
#[inline] #[inline]
fn grid_template_rows(&self) -> Self::TemplateTrackList<'_> { fn grid_template_rows(&self) -> Self::TemplateTrackList<'_> {
convert::grid_template_tracks(&self.0.get_position().grid_template_rows) convert::grid_template_tracks(&self.style.get_position().grid_template_rows)
} }
#[inline] #[inline]
fn grid_template_columns(&self) -> Self::TemplateTrackList<'_> { fn grid_template_columns(&self) -> Self::TemplateTrackList<'_> {
convert::grid_template_tracks(&self.0.get_position().grid_template_columns) convert::grid_template_tracks(&self.style.get_position().grid_template_columns)
} }
#[inline] #[inline]
fn grid_auto_rows(&self) -> Self::AutoTrackList<'_> { fn grid_auto_rows(&self) -> Self::AutoTrackList<'_> {
convert::grid_auto_tracks(&self.0.get_position().grid_auto_rows) convert::grid_auto_tracks(&self.style.get_position().grid_auto_rows)
} }
#[inline] #[inline]
fn grid_auto_columns(&self) -> Self::AutoTrackList<'_> { fn grid_auto_columns(&self) -> Self::AutoTrackList<'_> {
convert::grid_auto_tracks(&self.0.get_position().grid_auto_columns) convert::grid_auto_tracks(&self.style.get_position().grid_auto_columns)
} }
#[inline] #[inline]
fn grid_auto_flow(&self) -> taffy::GridAutoFlow { fn grid_auto_flow(&self) -> taffy::GridAutoFlow {
convert::grid_auto_flow(self.0.get_position().grid_auto_flow) convert::grid_auto_flow(self.style.get_position().grid_auto_flow)
} }
#[inline] #[inline]
fn gap(&self) -> taffy::Size<taffy::LengthPercentage> { fn gap(&self) -> taffy::Size<taffy::LengthPercentage> {
let position_styles = self.0.get_position(); let position_styles = self.style.get_position();
taffy::Size { taffy::Size {
width: convert::gap(&position_styles.column_gap), width: convert::gap(&position_styles.column_gap),
height: convert::gap(&position_styles.row_gap), height: convert::gap(&position_styles.row_gap),
@ -176,29 +187,29 @@ impl<T: Deref<Target = ComputedValues>> taffy::GridContainerStyle for TaffyStylo
#[inline] #[inline]
fn align_content(&self) -> Option<taffy::AlignContent> { fn align_content(&self) -> Option<taffy::AlignContent> {
convert::content_alignment(self.0.get_position().align_content.0) convert::content_alignment(self.style.get_position().align_content.0)
} }
#[inline] #[inline]
fn justify_content(&self) -> Option<taffy::JustifyContent> { fn justify_content(&self) -> Option<taffy::JustifyContent> {
convert::content_alignment(self.0.get_position().justify_content.0) convert::content_alignment(self.style.get_position().justify_content.0)
} }
#[inline] #[inline]
fn align_items(&self) -> Option<taffy::AlignItems> { fn align_items(&self) -> Option<taffy::AlignItems> {
convert::item_alignment(self.0.get_position().align_items.0) convert::item_alignment(self.style.get_position().align_items.0)
} }
#[inline] #[inline]
fn justify_items(&self) -> Option<taffy::AlignItems> { fn justify_items(&self) -> Option<taffy::AlignItems> {
convert::item_alignment(self.0.get_position().justify_items.computed.0) convert::item_alignment(self.style.get_position().justify_items.computed.0)
} }
} }
impl<T: Deref<Target = ComputedValues>> taffy::GridItemStyle for TaffyStyloStyle<T> { impl<T: Deref<Target = ComputedValues>> taffy::GridItemStyle for TaffyStyloStyle<T> {
#[inline] #[inline]
fn grid_row(&self) -> taffy::Line<taffy::GridPlacement> { fn grid_row(&self) -> taffy::Line<taffy::GridPlacement> {
let position_styles = self.0.get_position(); let position_styles = self.style.get_position();
taffy::Line { taffy::Line {
start: convert::grid_line(&position_styles.grid_row_start), start: convert::grid_line(&position_styles.grid_row_start),
end: convert::grid_line(&position_styles.grid_row_end), end: convert::grid_line(&position_styles.grid_row_end),
@ -207,7 +218,7 @@ impl<T: Deref<Target = ComputedValues>> taffy::GridItemStyle for TaffyStyloStyle
#[inline] #[inline]
fn grid_column(&self) -> taffy::Line<taffy::GridPlacement> { fn grid_column(&self) -> taffy::Line<taffy::GridPlacement> {
let position_styles = self.0.get_position(); let position_styles = self.style.get_position();
taffy::Line { taffy::Line {
start: convert::grid_line(&position_styles.grid_column_start), start: convert::grid_line(&position_styles.grid_column_start),
end: convert::grid_line(&position_styles.grid_column_end), end: convert::grid_line(&position_styles.grid_column_end),
@ -216,11 +227,11 @@ impl<T: Deref<Target = ComputedValues>> taffy::GridItemStyle for TaffyStyloStyle
#[inline] #[inline]
fn align_self(&self) -> Option<taffy::AlignSelf> { fn align_self(&self) -> Option<taffy::AlignSelf> {
convert::item_alignment(self.0.get_position().align_self.0.0) convert::item_alignment(self.style.get_position().align_self.0.0)
} }
#[inline] #[inline]
fn justify_self(&self) -> Option<taffy::AlignSelf> { fn justify_self(&self) -> Option<taffy::AlignSelf> {
convert::item_alignment(self.0.get_position().justify_self.0.0) convert::item_alignment(self.style.get_position().justify_self.0.0)
} }
} }

View file

@ -1,2 +1,3 @@
[grid-self-baseline-changes-grid-area-size-002.html] [grid-self-baseline-changes-grid-area-size-002.html]
expected: FAIL expected:
if os == "linux": FAIL

View file

@ -1,2 +0,0 @@
[grid-support-grid-auto-columns-rows-003.html]
expected: CRASH

View file

@ -1,11 +1,7 @@
[grid-template-columns-computed-implicit-track.html] [grid-template-columns-computed-implicit-track.html]
expected: CRASH
[Property grid-template-columns value 'none' computes to '10px'] [Property grid-template-columns value 'none' computes to '10px']
expected: FAIL expected: FAIL
[Property grid-template-columns value '1px' computes to '10px 1px']
expected: FAIL
[Property grid-template-columns value '1px [a\]' computes to '10px 1px [a\]'] [Property grid-template-columns value '1px [a\]' computes to '10px 1px [a\]']
expected: FAIL expected: FAIL
@ -18,15 +14,6 @@
[Property grid-template-columns value '[a\] 1px [b\]' computes to '10px [a\] 1px [b\]'] [Property grid-template-columns value '[a\] 1px [b\]' computes to '10px [a\] 1px [b\]']
expected: FAIL expected: FAIL
[Property grid-template-columns value '1px repeat(1, 2px) 3px' computes to '10px 1px 2px 3px']
expected: FAIL
[Property grid-template-columns value '1px repeat(auto-fill, 2px) 3px' computes to '10px 1px 2px 3px']
expected: FAIL
[Property grid-template-columns value '1px repeat(auto-fit, 2px) 3px' computes to '10px 1px 0px 3px']
expected: FAIL
[Property grid-template-columns value '1px [a\] repeat(1, 2px 3px) [b\] 4px' computes to '10px 1px [a\] 2px 3px [b\] 4px'] [Property grid-template-columns value '1px [a\] repeat(1, 2px 3px) [b\] 4px' computes to '10px 1px [a\] 2px 3px [b\] 4px']
expected: FAIL expected: FAIL

View file

@ -1,6 +0,0 @@
[grid-auto-flow-sparse-001.html]
[.grid 2]
expected: FAIL
[.grid 6]
expected: FAIL