From 882a855b8c71d461ab14c2953a2b574861fba5d2 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Wed, 17 Jul 2024 16:18:55 +0200 Subject: [PATCH] Convert layout to use Gecko's alignment style representation (#32790) Signed-off-by: Nico Burns Co-authored-by: Nico Burns --- Cargo.lock | 26 +- components/layout/flex.rs | 111 +- components/layout_2020/flexbox/layout.rs | 155 ++- .../animation/align-no-interpolation.html.ini | 261 ---- .../justify-no-interpolation.html.ini | 174 --- .../parse-align-content-001.html.ini | 54 - .../parse-align-content-002.html.ini | 21 - .../parse-align-content-003.html.ini | 54 - .../parse-align-content-004.html.ini | 120 -- .../parse-align-content-005.html.ini | 9 - .../parse-justify-content-001.html.ini | 51 - .../parse-justify-content-002.html.ini | 21 - .../parse-justify-content-003.html.ini | 51 - .../parse-justify-content-004.html.ini | 123 -- .../parse-justify-content-005.html.ini | 9 - .../place-content-shorthand-001.html.ini | 45 - .../place-content-shorthand-002.html.ini | 648 ---------- .../place-content-shorthand-003.html.ini | 6 - .../place-content-shorthand-004.html.ini | 21 - .../place-content-shorthand-005.html.ini | 6 - .../place-content-shorthand-006.html.ini | 66 - .../parse-align-items-001.html.ini | 51 - .../parse-align-items-002.html.ini | 21 - .../parse-align-items-003.html.ini | 51 - .../parse-align-items-004.html.ini | 87 -- .../parse-align-items-005.html.ini | 9 - .../parse-justify-items-001.html.ini | 66 - .../parse-justify-items-002.html.ini | 21 - .../parse-justify-items-003.html.ini | 66 - .../parse-justify-items-004.html.ini | 96 -- .../parse-justify-items-005.html.ini | 9 - .../place-items-shorthand-001.html.ini | 51 - .../place-items-shorthand-002.html.ini | 1122 ----------------- .../place-items-shorthand-003.html.ini | 6 - .../place-items-shorthand-004.html.ini | 12 - .../place-items-shorthand-005.html.ini | 6 - .../place-items-shorthand-006.html.ini | 108 -- .../shorthand-serialization-001.html.ini | 51 - .../meta/css/css-align/inheritance.html.ini | 33 - .../parsing/align-content-computed.html.ini | 42 - .../parsing/align-content-valid.html.ini | 45 - .../parsing/align-items-computed.html.ini | 39 - .../parsing/align-items-valid.html.ini | 42 - .../parsing/align-self-computed.html.ini | 42 - .../parsing/align-self-valid.html.ini | 45 - .../parsing/justify-content-computed.html.ini | 42 - .../parsing/justify-content-valid.html.ini | 42 - .../parsing/justify-items-computed.html.ini | 57 - .../parsing/justify-items-valid.html.ini | 60 - .../parsing/justify-self-computed.html.ini | 48 - .../parsing/justify-self-valid.html.ini | 51 - .../parsing/place-content-computed.html.ini | 69 - .../parsing/place-content-shorthand.html.ini | 45 - .../parsing/place-content-valid.html.ini | 69 - .../parsing/place-items-computed.html.ini | 51 - .../parsing/place-items-shorthand.html.ini | 36 - .../parsing/place-items-valid.html.ini | 54 - .../parsing/place-self-computed.html.ini | 48 - .../parsing/place-self-shorthand.html.ini | 36 - .../parsing/place-self-valid.html.ini | 48 - .../parse-align-self-001.html.ini | 54 - .../parse-align-self-002.html.ini | 21 - .../parse-align-self-003.html.ini | 54 - .../parse-align-self-004.html.ini | 84 -- .../parse-align-self-005.html.ini | 9 - .../parse-justify-self-001.html.ini | 60 - .../parse-justify-self-002.html.ini | 21 - .../parse-justify-self-003.html.ini | 60 - .../parse-justify-self-004.html.ini | 78 -- .../parse-justify-self-005.html.ini | 9 - .../place-self-shorthand-001.html.ini | 54 - .../place-self-shorthand-002.html.ini | 1080 ---------------- .../place-self-shorthand-003.html.ini | 6 - .../place-self-shorthand-004.html.ini | 12 - .../place-self-shorthand-005.html.ini | 6 - .../place-self-shorthand-006.html.ini | 117 -- .../dynamic-stretch-change.html.ini | 2 - ...computedstyle_align-items-invalid.html.ini | 4 - ..._computedstyle_align-self-invalid.html.ini | 4 - .../meta/css/css-flexbox/inheritance.html.ini | 15 - 80 files changed, 177 insertions(+), 6482 deletions(-) delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/parse-align-content-001.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/parse-align-content-002.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/parse-align-content-003.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/parse-align-content-004.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/parse-align-content-005.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-001.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-002.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-003.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-004.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-005.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-001.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-002.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-003.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-004.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-005.html.ini delete mode 100644 tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-006.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/parse-align-items-001.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/parse-align-items-002.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/parse-align-items-003.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/parse-align-items-004.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/parse-align-items-005.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-001.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-002.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-003.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-004.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-005.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-001.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-002.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-003.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-004.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-005.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-006.html.ini delete mode 100644 tests/wpt/meta/css/css-align/default-alignment/shorthand-serialization-001.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/align-content-computed.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/align-content-valid.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/align-items-computed.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/align-items-valid.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/align-self-computed.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/align-self-valid.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/justify-content-computed.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/justify-content-valid.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/justify-items-valid.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/justify-self-computed.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/justify-self-valid.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/place-content-computed.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/place-content-shorthand.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/place-content-valid.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/place-items-shorthand.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/place-items-valid.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/place-self-computed.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/place-self-shorthand.html.ini delete mode 100644 tests/wpt/meta/css/css-align/parsing/place-self-valid.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/parse-align-self-001.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/parse-align-self-002.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/parse-align-self-003.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/parse-align-self-004.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/parse-align-self-005.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-001.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-002.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-003.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-004.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-005.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-001.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-002.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-003.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-004.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-005.html.ini delete mode 100644 tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-006.html.ini delete mode 100644 tests/wpt/meta/css/css-flexbox/dynamic-stretch-change.html.ini delete mode 100644 tests/wpt/meta/css/css-flexbox/getcomputedstyle/flexbox_computedstyle_align-items-invalid.html.ini delete mode 100644 tests/wpt/meta/css/css-flexbox/getcomputedstyle/flexbox_computedstyle_align-self-invalid.html.ini delete mode 100644 tests/wpt/meta/css/css-flexbox/inheritance.html.ini diff --git a/Cargo.lock b/Cargo.lock index ad095369aa2..d3170ef8005 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1291,7 +1291,7 @@ dependencies = [ [[package]] name = "derive_common" version = "0.0.1" -source = "git+https://github.com/servo/stylo?branch=2024-05-31#36bbc6a977f6f16383ea22f2b1215b10f461a7a1" +source = "git+https://github.com/servo/stylo?branch=2024-05-31#4465d077b4058693260d486d2e2240887c19a9e7" dependencies = [ "darling", "proc-macro2", @@ -3760,7 +3760,7 @@ dependencies = [ [[package]] name = "malloc_size_of" version = "0.0.1" -source = "git+https://github.com/servo/stylo?branch=2024-05-31#36bbc6a977f6f16383ea22f2b1215b10f461a7a1" +source = "git+https://github.com/servo/stylo?branch=2024-05-31#4465d077b4058693260d486d2e2240887c19a9e7" dependencies = [ "accountable-refcell", "app_units", @@ -5399,7 +5399,7 @@ dependencies = [ [[package]] name = "selectors" version = "0.24.0" -source = "git+https://github.com/servo/stylo?branch=2024-05-31#36bbc6a977f6f16383ea22f2b1215b10f461a7a1" +source = "git+https://github.com/servo/stylo?branch=2024-05-31#4465d077b4058693260d486d2e2240887c19a9e7" dependencies = [ "bitflags 2.6.0", "cssparser", @@ -5687,7 +5687,7 @@ dependencies = [ [[package]] name = "servo_arc" version = "0.2.0" -source = "git+https://github.com/servo/stylo?branch=2024-05-31#36bbc6a977f6f16383ea22f2b1215b10f461a7a1" +source = "git+https://github.com/servo/stylo?branch=2024-05-31#4465d077b4058693260d486d2e2240887c19a9e7" dependencies = [ "nodrop", "serde", @@ -5697,7 +5697,7 @@ dependencies = [ [[package]] name = "servo_atoms" version = "0.0.1" -source = "git+https://github.com/servo/stylo?branch=2024-05-31#36bbc6a977f6f16383ea22f2b1215b10f461a7a1" +source = "git+https://github.com/servo/stylo?branch=2024-05-31#4465d077b4058693260d486d2e2240887c19a9e7" dependencies = [ "string_cache", "string_cache_codegen", @@ -5885,7 +5885,7 @@ checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" [[package]] name = "size_of_test" version = "0.0.1" -source = "git+https://github.com/servo/stylo?branch=2024-05-31#36bbc6a977f6f16383ea22f2b1215b10f461a7a1" +source = "git+https://github.com/servo/stylo?branch=2024-05-31#4465d077b4058693260d486d2e2240887c19a9e7" dependencies = [ "static_assertions", ] @@ -6026,7 +6026,7 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" [[package]] name = "static_prefs" version = "0.1.0" -source = "git+https://github.com/servo/stylo?branch=2024-05-31#36bbc6a977f6f16383ea22f2b1215b10f461a7a1" +source = "git+https://github.com/servo/stylo?branch=2024-05-31#4465d077b4058693260d486d2e2240887c19a9e7" [[package]] name = "strict-num" @@ -6063,7 +6063,7 @@ dependencies = [ [[package]] name = "style" version = "0.0.1" -source = "git+https://github.com/servo/stylo?branch=2024-05-31#36bbc6a977f6f16383ea22f2b1215b10f461a7a1" +source = "git+https://github.com/servo/stylo?branch=2024-05-31#4465d077b4058693260d486d2e2240887c19a9e7" dependencies = [ "app_units", "arrayvec", @@ -6121,7 +6121,7 @@ dependencies = [ [[package]] name = "style_config" version = "0.0.1" -source = "git+https://github.com/servo/stylo?branch=2024-05-31#36bbc6a977f6f16383ea22f2b1215b10f461a7a1" +source = "git+https://github.com/servo/stylo?branch=2024-05-31#4465d077b4058693260d486d2e2240887c19a9e7" dependencies = [ "lazy_static", ] @@ -6129,7 +6129,7 @@ dependencies = [ [[package]] name = "style_derive" version = "0.0.1" -source = "git+https://github.com/servo/stylo?branch=2024-05-31#36bbc6a977f6f16383ea22f2b1215b10f461a7a1" +source = "git+https://github.com/servo/stylo?branch=2024-05-31#4465d077b4058693260d486d2e2240887c19a9e7" dependencies = [ "darling", "derive_common", @@ -6160,7 +6160,7 @@ dependencies = [ [[package]] name = "style_traits" version = "0.0.1" -source = "git+https://github.com/servo/stylo?branch=2024-05-31#36bbc6a977f6f16383ea22f2b1215b10f461a7a1" +source = "git+https://github.com/servo/stylo?branch=2024-05-31#4465d077b4058693260d486d2e2240887c19a9e7" dependencies = [ "app_units", "bitflags 2.6.0", @@ -6510,7 +6510,7 @@ dependencies = [ [[package]] name = "to_shmem" version = "0.0.1" -source = "git+https://github.com/servo/stylo?branch=2024-05-31#36bbc6a977f6f16383ea22f2b1215b10f461a7a1" +source = "git+https://github.com/servo/stylo?branch=2024-05-31#4465d077b4058693260d486d2e2240887c19a9e7" dependencies = [ "cssparser", "servo_arc", @@ -6523,7 +6523,7 @@ dependencies = [ [[package]] name = "to_shmem_derive" version = "0.0.1" -source = "git+https://github.com/servo/stylo?branch=2024-05-31#36bbc6a977f6f16383ea22f2b1215b10f461a7a1" +source = "git+https://github.com/servo/stylo?branch=2024-05-31#4465d077b4058693260d486d2e2240887c19a9e7" dependencies = [ "darling", "derive_common", diff --git a/components/layout/flex.rs b/components/layout/flex.rs index 56bf6ca7c6a..76df1f1ce0e 100644 --- a/components/layout/flex.rs +++ b/components/layout/flex.rs @@ -11,16 +11,14 @@ use app_units::{Au, MAX_AU}; use euclid::default::Point2D; use log::debug; use serde::Serialize; -use style::computed_values::align_content::T as AlignContent; -use style::computed_values::align_self::T as AlignSelf; use style::computed_values::flex_direction::T as FlexDirection; use style::computed_values::flex_wrap::T as FlexWrap; -use style::computed_values::justify_content::T as JustifyContent; use style::logical_geometry::{Direction, LogicalSize}; use style::properties::ComputedValues; use style::servo::restyle_damage::ServoRestyleDamage; use style::values::computed::flex::FlexBasis; use style::values::computed::{MaxSize, Size}; +use style::values::specified::align::AlignFlags; use crate::block::{AbsoluteAssignBSizesTraversal, BlockFlow, MarginsMayCollapseFlag}; use crate::context::LayoutContext; @@ -612,42 +610,47 @@ impl FlexFlow { // TODO(stshine): if this flex line contain children that have // property visibility:collapse, exclude them and resolve again. - let item_count = items.len() as i32; - let mut cur_i = inline_start_content_edge; - let item_interval = if line.free_space >= Au(0) && line.auto_margin_count == 0 { - match self + let justify_content = { + let justify_content = self .block_flow .fragment .style() .get_position() .justify_content - { - JustifyContent::SpaceBetween => { + .0 + .primary() + .value(); + + match justify_content { + AlignFlags::AUTO | AlignFlags::NORMAL => AlignFlags::STRETCH, + _ => justify_content, + } + }; + + let item_count = items.len() as i32; + let mut cur_i = inline_start_content_edge; + let item_interval = if line.free_space >= Au(0) && line.auto_margin_count == 0 { + match justify_content { + AlignFlags::SPACE_BETWEEN => { if item_count == 1 { Au(0) } else { line.free_space / (item_count - 1) } }, - JustifyContent::SpaceAround => line.free_space / item_count, + AlignFlags::SPACE_AROUND => line.free_space / item_count, _ => Au(0), } } else { Au(0) }; - match self - .block_flow - .fragment - .style() - .get_position() - .justify_content - { + match justify_content { // Overflow equally in both ends of line. - JustifyContent::Center | JustifyContent::SpaceAround => { + AlignFlags::CENTER | AlignFlags::SPACE_AROUND => { cur_i += (line.free_space - item_interval * (item_count - 1)) / 2; }, - JustifyContent::FlexEnd => { + AlignFlags::FLEX_END => { cur_i += line.free_space; }, _ => {}, @@ -721,12 +724,22 @@ impl FlexFlow { let _scope = layout_debug_scope!("flex::inline_mode_assign_block_size"); let line_count = self.lines.len() as i32; - let line_align = self - .block_flow - .fragment - .style() - .get_position() - .align_content; + let line_align = { + let line_align = self + .block_flow + .fragment + .style() + .get_position() + .align_content + .0 + .primary() + .value(); + + match line_align { + AlignFlags::AUTO | AlignFlags::NORMAL => AlignFlags::STRETCH, + _ => line_align, + } + }; let mut cur_b = self.block_flow.fragment.border_padding.block_start; let mut total_cross_size = Au(0); let mut line_interval = Au(0); @@ -762,21 +775,21 @@ impl FlexFlow { let free_space = container_block_size - total_cross_size; total_cross_size = container_block_size; - if line_align == AlignContent::Stretch && free_space > Au(0) { + if line_align == AlignFlags::STRETCH && free_space > Au(0) { for line in self.lines.iter_mut() { line.cross_size += free_space / line_count; } } line_interval = match line_align { - AlignContent::SpaceBetween => { + AlignFlags::SPACE_BETWEEN => { if line_count <= 1 { Au(0) } else { free_space / (line_count - 1) } }, - AlignContent::SpaceAround => { + AlignFlags::SPACE_AROUND => { if line_count == 0 { Au(0) } else { @@ -787,16 +800,31 @@ impl FlexFlow { }; match line_align { - AlignContent::Center | AlignContent::SpaceAround => { + AlignFlags::CENTER | AlignFlags::SPACE_AROUND => { cur_b += (free_space - line_interval * (line_count - 1)) / 2; }, - AlignContent::FlexEnd => { + AlignFlags::FLEX_END => { cur_b += free_space; }, _ => {}, } } + let align_items = { + let align_items = self + .block_flow + .fragment + .style() + .clone_align_items() + .0 + .value(); + + match align_items { + AlignFlags::AUTO | AlignFlags::NORMAL => AlignFlags::STRETCH, + _ => align_items, + } + }; + let mut children = self.block_flow.base.children.random_access_mut(); for line in &self.lines { for item in self.items[line.range.clone()].iter_mut() { @@ -826,8 +854,23 @@ impl FlexFlow { free_space = Au(0); } - let self_align = block.fragment.style().get_position().align_self; - if self_align == AlignSelf::Stretch && + let self_align = { + let self_align = block + .fragment + .style() + .get_position() + .align_self + .0 + .0 + .value(); + + match self_align { + AlignFlags::AUTO | AlignFlags::NORMAL => align_items, + _ => self_align, + } + }; + + if self_align == AlignFlags::STRETCH && block.fragment.style().content_block_size().is_auto() { free_space = Au(0); @@ -850,8 +893,8 @@ impl FlexFlow { // TODO(stshine): support baseline alignment. if free_space != Au(0) { let flex_cross = match self_align { - AlignSelf::FlexEnd => free_space, - AlignSelf::Center => free_space / 2, + AlignFlags::FLEX_END => free_space, + AlignFlags::CENTER => free_space / 2, _ => Au(0), }; block.base.position.start.b += if !self.cross_reverse { diff --git a/components/layout_2020/flexbox/layout.rs b/components/layout_2020/flexbox/layout.rs index b9029f7fac2..adadc44eae9 100644 --- a/components/layout_2020/flexbox/layout.rs +++ b/components/layout_2020/flexbox/layout.rs @@ -18,6 +18,7 @@ use style::properties::ComputedValues; use style::values::computed::length::Size; use style::values::computed::Length; use style::values::generics::flex::GenericFlexBasis as FlexBasis; +use style::values::specified::align::AlignFlags; use style::Zero; use super::geom::{ @@ -136,14 +137,12 @@ impl FlexContext<'_> { } fn align_for(&self, align_self: &AlignSelf) -> AlignItems { - match align_self { - AlignSelf::Auto => self.align_items, - AlignSelf::Stretch => AlignItems::Stretch, - AlignSelf::FlexStart => AlignItems::FlexStart, - AlignSelf::FlexEnd => AlignItems::FlexEnd, - AlignSelf::Center => AlignItems::Center, - AlignSelf::Baseline => AlignItems::Baseline, - } + let value = align_self.0 .0.value(); + let mapped_value = match value { + AlignFlags::AUTO | AlignFlags::NORMAL => self.align_items.0, + _ => value, + }; + AlignItems(mapped_value) } } @@ -225,8 +224,12 @@ impl FlexContainer { FlexWrap::Nowrap | FlexWrap::Wrap => false, FlexWrap::WrapReverse => true, }; + let align_content = container_style.clone_align_content(); - let align_items = container_style.clone_align_items(); + let align_items = AlignItems(match container_style.clone_align_items().0 { + AlignFlags::AUTO | AlignFlags::NORMAL => AlignFlags::STRETCH, + align => align, + }); let justify_content = container_style.clone_justify_content(); let mut flex_context = FlexContext { @@ -310,10 +313,12 @@ impl FlexContainer { // // In addition to the spec at https://www.w3.org/TR/css-align-3/ this implementation follows // the resolution of https://github.com/w3c/csswg-drafts/issues/10154 - let resolved_align_content: AlignContent = { + let resolved_align_content: AlignFlags = { + let align_content_style = flex_context.align_content.0.primary(); + // Inital values from the style system - let mut resolved_align_content = flex_context.align_content; - let mut is_safe = false; // FIXME: retrieve from style system + let mut resolved_align_content = align_content_style.value(); + let mut is_safe = align_content_style.flags() == AlignFlags::SAFE; // Fallback occurs in two cases: @@ -321,17 +326,17 @@ impl FlexContainer { // https://www.w3.org/TR/css-align-3/#distribution-values if line_count <= 1 || free_space <= Au::zero() { (resolved_align_content, is_safe) = match resolved_align_content { - AlignContent::Stretch => (AlignContent::FlexStart, true), - AlignContent::SpaceBetween => (AlignContent::FlexStart, true), - AlignContent::SpaceAround => (AlignContent::Center, true), - AlignContent::SpaceEvenly => (AlignContent::Center, true), + AlignFlags::STRETCH => (AlignFlags::FLEX_START, true), + AlignFlags::SPACE_BETWEEN => (AlignFlags::FLEX_START, true), + AlignFlags::SPACE_AROUND => (AlignFlags::CENTER, true), + AlignFlags::SPACE_EVENLY => (AlignFlags::CENTER, true), _ => (resolved_align_content, is_safe), } }; // 2. If free space is negative the "safe" alignment variants all fallback to Start alignment if free_space <= Au::zero() && is_safe { - resolved_align_content = AlignContent::Start; + resolved_align_content = AlignFlags::START; } resolved_align_content @@ -339,40 +344,46 @@ impl FlexContainer { // Implement "unsafe" alignment. "safe" alignment is handled by the fallback process above. cross_start_position_cursor = match resolved_align_content { - AlignContent::Start => Au::zero(), - AlignContent::FlexStart => { + AlignFlags::START => Au::zero(), + AlignFlags::FLEX_START => { if layout_is_flex_reversed { free_space } else { Au::zero() } }, - AlignContent::End => free_space, - AlignContent::FlexEnd => { + AlignFlags::END => free_space, + AlignFlags::FLEX_END => { if layout_is_flex_reversed { Au::zero() } else { free_space } }, - AlignContent::Center => free_space / 2, - AlignContent::Stretch => Au::zero(), - AlignContent::SpaceBetween => Au::zero(), - AlignContent::SpaceAround => free_space / line_count as i32 / 2, - AlignContent::SpaceEvenly => free_space / (line_count + 1) as i32, + AlignFlags::CENTER => free_space / 2, + AlignFlags::STRETCH => Au::zero(), + AlignFlags::SPACE_BETWEEN => Au::zero(), + AlignFlags::SPACE_AROUND => free_space / line_count as i32 / 2, + AlignFlags::SPACE_EVENLY => free_space / (line_count + 1) as i32, + + // TODO: Implement all alignments. Note: not all alignment values are valid for content distribution + _ => Au::zero(), }; // TODO: Implement gap property line_interval = /*gap + */ match resolved_align_content { - AlignContent::Start => Au::zero(), - AlignContent::FlexStart => Au::zero(), - AlignContent::End => Au::zero(), - AlignContent::FlexEnd => Au::zero(), - AlignContent::Center => Au::zero(), - AlignContent::Stretch => Au::zero(), - AlignContent::SpaceBetween => free_space / (line_count - 1) as i32, - AlignContent::SpaceAround => free_space / line_count as i32, - AlignContent::SpaceEvenly => free_space / (line_count + 1) as i32, + AlignFlags::START => Au::zero(), + AlignFlags::FLEX_START => Au::zero(), + AlignFlags::END => Au::zero(), + AlignFlags::FLEX_END => Au::zero(), + AlignFlags::CENTER => Au::zero(), + AlignFlags::STRETCH => Au::zero(), + AlignFlags::SPACE_BETWEEN => free_space / (line_count - 1) as i32, + AlignFlags::SPACE_AROUND => free_space / line_count as i32, + AlignFlags::SPACE_EVENLY => free_space / (line_count + 1) as i32, + + // TODO: Implement all alignments. Note: not all alignment values are valid for content distribution + _ => Au::zero(), }; }; @@ -819,7 +830,7 @@ impl FlexLine<'_> { .zip(item_layout_results) .zip(&item_used_main_sizes) .map(|((item, mut item_result), &used_main_size)| { - let has_stretch = item.align_self == AlignItems::Stretch; + let has_stretch = item.align_self.0.value() == AlignFlags::STRETCH; let cross_size = if has_stretch && item.content_box_size.cross.is_auto() && !(item.margin.cross_start.is_auto() || item.margin.cross_end.is_auto()) @@ -857,10 +868,12 @@ impl FlexLine<'_> { // // In addition to the spec at https://www.w3.org/TR/css-align-3/ this implementation follows // the resolution of https://github.com/w3c/csswg-drafts/issues/10154 - let resolved_justify_content: JustifyContent = { + let resolved_justify_content: AlignFlags = { + let justify_content_style = flex_context.justify_content.0.primary(); + // Inital values from the style system - let mut resolved_justify_content = flex_context.justify_content; - let mut is_safe = false; // FIXME: retrieve from style system + let mut resolved_justify_content = justify_content_style.value(); + let mut is_safe = justify_content_style.flags() == AlignFlags::SAFE; // Fallback occurs in two cases: @@ -868,17 +881,17 @@ impl FlexLine<'_> { // https://www.w3.org/TR/css-align-3/#distribution-values if item_count <= 1 || free_space <= Au::zero() { (resolved_justify_content, is_safe) = match resolved_justify_content { - JustifyContent::Stretch => (JustifyContent::FlexStart, true), - JustifyContent::SpaceBetween => (JustifyContent::FlexStart, true), - JustifyContent::SpaceAround => (JustifyContent::Center, true), - JustifyContent::SpaceEvenly => (JustifyContent::Center, true), + AlignFlags::STRETCH => (AlignFlags::FLEX_START, true), + AlignFlags::SPACE_BETWEEN => (AlignFlags::FLEX_START, true), + AlignFlags::SPACE_AROUND => (AlignFlags::CENTER, true), + AlignFlags::SPACE_EVENLY => (AlignFlags::CENTER, true), _ => (resolved_justify_content, is_safe), } }; // 2. If free space is negative the "safe" alignment variants all fallback to Start alignment if free_space <= Au::zero() && is_safe { - resolved_justify_content = JustifyContent::Start; + resolved_justify_content = AlignFlags::START; } resolved_justify_content @@ -886,40 +899,46 @@ impl FlexLine<'_> { // Implement "unsafe" alignment. "safe" alignment is handled by the fallback process above. let main_start_position = match resolved_justify_content { - JustifyContent::Start => Au::zero(), - JustifyContent::FlexStart => { + AlignFlags::START => Au::zero(), + AlignFlags::FLEX_START => { if layout_is_flex_reversed { free_space } else { Au::zero() } }, - JustifyContent::End => free_space, - JustifyContent::FlexEnd => { + AlignFlags::END => free_space, + AlignFlags::FLEX_END => { if layout_is_flex_reversed { Au::zero() } else { free_space } }, - JustifyContent::Center => free_space / 2, - JustifyContent::Stretch => Au::zero(), - JustifyContent::SpaceBetween => Au::zero(), - JustifyContent::SpaceAround => (free_space / item_count as i32) / 2, - JustifyContent::SpaceEvenly => free_space / (item_count + 1) as i32, + AlignFlags::CENTER => free_space / 2, + AlignFlags::STRETCH => Au::zero(), + AlignFlags::SPACE_BETWEEN => Au::zero(), + AlignFlags::SPACE_AROUND => (free_space / item_count as i32) / 2, + AlignFlags::SPACE_EVENLY => free_space / (item_count + 1) as i32, + + // TODO: Implement all alignments. Note: not all alignment values are valid for content distribution + _ => Au::zero(), }; // TODO: Implement gap property let item_main_interval = /*gap + */ match resolved_justify_content { - JustifyContent::Start => Au::zero(), - JustifyContent::FlexStart => Au::zero(), - JustifyContent::End => Au::zero(), - JustifyContent::FlexEnd => Au::zero(), - JustifyContent::Center => Au::zero(), - JustifyContent::Stretch => Au::zero(), - JustifyContent::SpaceBetween => free_space / (item_count - 1) as i32, - JustifyContent::SpaceAround => free_space / item_count as i32, - JustifyContent::SpaceEvenly => free_space / (item_count + 1) as i32, + AlignFlags::START => Au::zero(), + AlignFlags::FLEX_START => Au::zero(), + AlignFlags::END => Au::zero(), + AlignFlags::FLEX_END => Au::zero(), + AlignFlags::CENTER => Au::zero(), + AlignFlags::STRETCH => Au::zero(), + AlignFlags::SPACE_BETWEEN => free_space / (item_count - 1) as i32, + AlignFlags::SPACE_AROUND => free_space / item_count as i32, + AlignFlags::SPACE_EVENLY => free_space / (item_count + 1) as i32, + + // TODO: Implement all alignments. Note: not all alignment values are valid for content distribution + _ => Au::zero(), }; // https://drafts.csswg.org/css-flexbox/#algo-cross-margins @@ -1440,18 +1459,18 @@ impl FlexItem<'_> { if self.margin.cross_start.is_auto() || self.margin.cross_end.is_auto() { Au::zero() } else { - match self.align_self { - AlignItems::Stretch | AlignItems::FlexStart => Au::zero(), - AlignItems::FlexEnd => { + match self.align_self.0.value() { + AlignFlags::STRETCH | AlignFlags::FLEX_START => Au::zero(), + AlignFlags::FLEX_END => { let margin_box_cross = *content_size + self.pbm_auto_is_zero.cross; line_cross_size - margin_box_cross }, - AlignItems::Center => { + AlignFlags::CENTER => { let margin_box_cross = *content_size + self.pbm_auto_is_zero.cross; (line_cross_size - margin_box_cross) / 2 }, - // FIXME: handle baseline alignment - AlignItems::Baseline => Au::zero(), + // FIXME: handle other alignments (note: not all AlignFlags values are valid for self alignment) + _ => Au::zero(), } }; outer_cross_start + margin.cross_start + self.border.cross_start + self.padding.cross_start diff --git a/tests/wpt/meta/css/css-align/animation/align-no-interpolation.html.ini b/tests/wpt/meta/css/css-align/animation/align-no-interpolation.html.ini index 49717ef5ddd..a543623e407 100644 --- a/tests/wpt/meta/css/css-align/animation/align-no-interpolation.html.ini +++ b/tests/wpt/meta/css/css-align/animation/align-no-interpolation.html.ini @@ -8,60 +8,6 @@ [CSS Transitions: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (-0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.3) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - [Web Animations: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -83,15 +29,6 @@ [Web Animations: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (-0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.3) should be [baseline\]] - expected: FAIL - [Web Animations: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -113,15 +50,6 @@ [Web Animations: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] expected: FAIL - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (-0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.3) should be [baseline\]] - expected: FAIL - [Web Animations: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -152,51 +80,6 @@ [CSS Transitions: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.3) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - [CSS Transitions: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -206,78 +89,6 @@ [CSS Transitions: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.3) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (-0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (-0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (-0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0.3) should be [baseline\]] - expected: FAIL - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -287,18 +98,6 @@ [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -308,18 +107,6 @@ [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -329,18 +116,6 @@ [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -350,18 +125,6 @@ [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -371,18 +134,6 @@ [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -391,15 +142,3 @@ [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/animation/justify-no-interpolation.html.ini b/tests/wpt/meta/css/css-align/animation/justify-no-interpolation.html.ini index 3167cf2059c..b22da2cd6a3 100644 --- a/tests/wpt/meta/css/css-align/animation/justify-no-interpolation.html.ini +++ b/tests/wpt/meta/css/css-align/animation/justify-no-interpolation.html.ini @@ -8,60 +8,6 @@ [CSS Transitions: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (-0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.3) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - [Web Animations: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -92,60 +38,6 @@ [CSS Transitions: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (-0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition: all: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.3) should be [initial\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Animations: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - [Web Animations: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -167,24 +59,6 @@ [Web Animations: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] expected: FAIL - [CSS Transitions: property from [initial\] to [baseline\] at (-0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (-0.3) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0) should be [baseline\]] - expected: FAIL - - [CSS Transitions: property from [initial\] to [baseline\] at (0.3) should be [baseline\]] - expected: FAIL - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -194,18 +68,6 @@ [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -215,18 +77,6 @@ [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -236,18 +86,6 @@ [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-behavior:allow-discrete: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (-0.3) should be [initial\]] expected: FAIL @@ -256,15 +94,3 @@ [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.3) should be [initial\]] expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.5) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (0.6) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (1) should be [baseline\]] - expected: FAIL - - [CSS Transitions with transition-property:all and transition-behavor:allow-discrete: property from [initial\] to [baseline\] at (1.5) should be [baseline\]] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-001.html.ini b/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-001.html.ini deleted file mode 100644 index 630f4fbb5f5..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-001.html.ini +++ /dev/null @@ -1,54 +0,0 @@ -[parse-align-content-001.html] - [Checking align-content: normal] - expected: FAIL - - [Checking align-content: start] - expected: FAIL - - [Checking align-content: end] - expected: FAIL - - [Checking align-content: center] - expected: FAIL - - [Checking align-content: flex-start] - expected: FAIL - - [Checking align-content: flex-end] - expected: FAIL - - [Checking align-content: stretch] - expected: FAIL - - [Checking align-content: space-around] - expected: FAIL - - [Checking align-content: space-between] - expected: FAIL - - [Checking align-content: space-evenly] - expected: FAIL - - [Checking align-content: baseline] - expected: FAIL - - [Checking align-content: first baseline] - expected: FAIL - - [Checking align-content: last baseline] - expected: FAIL - - [Checking align-content: safe flex-end] - expected: FAIL - - [Checking align-content: unsafe end] - expected: FAIL - - [Checking align-content: safe end] - expected: FAIL - - [Checking align-content: unsafe flex-start] - expected: FAIL - - [Checking align-content: safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-002.html.ini b/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-002.html.ini deleted file mode 100644 index 17f02ea6801..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-002.html.ini +++ /dev/null @@ -1,21 +0,0 @@ -[parse-align-content-002.html] - [Test 'initial' value when nothing is specified] - expected: FAIL - - [Test align-content: 'initial'] - expected: FAIL - - [Test grid items align-content: 'initial'] - expected: FAIL - - [Test flex items align-content: 'initial'] - expected: FAIL - - [Test absolute positioned elements align-content: 'initial'] - expected: FAIL - - [Test absolute positioned grid items align-content: 'initial'] - expected: FAIL - - [Test absolute positioned flex items align-content: 'initial'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-003.html.ini b/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-003.html.ini deleted file mode 100644 index 4ee5c5ffe98..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-003.html.ini +++ /dev/null @@ -1,54 +0,0 @@ -[parse-align-content-003.html] - [Checking align-content: normal] - expected: FAIL - - [Checking align-content: start] - expected: FAIL - - [Checking align-content: end] - expected: FAIL - - [Checking align-content: center] - expected: FAIL - - [Checking align-content: flex-start] - expected: FAIL - - [Checking align-content: flex-end] - expected: FAIL - - [Checking align-content: stretch] - expected: FAIL - - [Checking align-content: space-around] - expected: FAIL - - [Checking align-content: space-between] - expected: FAIL - - [Checking align-content: space-evenly] - expected: FAIL - - [Checking align-content: baseline] - expected: FAIL - - [Checking align-content: first baseline] - expected: FAIL - - [Checking align-content: last baseline] - expected: FAIL - - [Checking align-content: safe flex-end] - expected: FAIL - - [Checking align-content: unsafe end] - expected: FAIL - - [Checking align-content: safe end] - expected: FAIL - - [Checking align-content: unsafe flex-start] - expected: FAIL - - [Checking align-content: safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-004.html.ini b/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-004.html.ini deleted file mode 100644 index c137d8de206..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-004.html.ini +++ /dev/null @@ -1,120 +0,0 @@ -[parse-align-content-004.html] - [Checking invalid combination - align-content: auto] - expected: FAIL - - [Checking invalid combination - align-content: legacy] - expected: FAIL - - [Checking invalid combination - align-content: self-start] - expected: FAIL - - [Checking invalid combination - align-content: left] - expected: FAIL - - [Checking invalid combination - align-content: safe right] - expected: FAIL - - [Checking invalid combination - align-content: auto safe] - expected: FAIL - - [Checking invalid combination - align-content: auto left] - expected: FAIL - - [Checking invalid combination - align-content: normal unsafe] - expected: FAIL - - [Checking invalid combination - align-content: normal stretch] - expected: FAIL - - [Checking invalid combination - align-content: baseline normal] - expected: FAIL - - [Checking invalid combination - align-content: baseline center] - expected: FAIL - - [Checking invalid combination - align-content: first baseline center] - expected: FAIL - - [Checking invalid combination - align-content: last baseline center] - expected: FAIL - - [Checking invalid combination - align-content: baseline last] - expected: FAIL - - [Checking invalid combination - align-content: baseline first] - expected: FAIL - - [Checking invalid combination - align-content: stretch unsafe] - expected: FAIL - - [Checking invalid combination - align-content: stretch right] - expected: FAIL - - [Checking invalid combination - align-content: unsafe unsafe] - expected: FAIL - - [Checking invalid combination - align-content: unsafe safe] - expected: FAIL - - [Checking invalid combination - align-content: center start] - expected: FAIL - - [Checking invalid combination - align-content: unsafe stretch] - expected: FAIL - - [Checking invalid combination - align-content: safe stretch] - expected: FAIL - - [Checking invalid combination - align-content: baseline safe] - expected: FAIL - - [Checking invalid combination - align-content: unsafe baseline] - expected: FAIL - - [Checking invalid combination - align-content: unsafe safe left] - expected: FAIL - - [Checking invalid combination - align-content: unsafe left safe] - expected: FAIL - - [Checking invalid combination - align-content: left safe unsafe safe] - expected: FAIL - - [Checking invalid combination - align-content: start safe] - expected: FAIL - - [Checking invalid combination - align-content: safe] - expected: FAIL - - [Checking invalid combination - align-content: space-between left] - expected: FAIL - - [Checking invalid combination - align-content: space-around center] - expected: FAIL - - [Checking invalid combination - align-content: space-evenly right] - expected: FAIL - - [Checking invalid combination - align-content: stretch safe start] - expected: FAIL - - [Checking invalid combination - align-content: space-around unsafe] - expected: FAIL - - [Checking invalid combination - align-content: space-evenly safe flex-start] - expected: FAIL - - [Checking invalid combination - align-content: space-between safe] - expected: FAIL - - [Checking invalid combination - align-content: space-between stretch] - expected: FAIL - - [Checking invalid combination - align-content: stretch start] - expected: FAIL - - [Checking invalid combination - align-content: stretch baseline] - expected: FAIL - - [Checking invalid combination - align-content: first baseline space-around] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-005.html.ini b/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-005.html.ini deleted file mode 100644 index 99b34224951..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/parse-align-content-005.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[parse-align-content-005.html] - [Test the value 'inherit' overrides current value ('end')] - expected: FAIL - - [Test the value 'inherit' overrides current value ('safe start')] - expected: FAIL - - [Test the value 'inherit' overrides current value ('unsafe center')] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-001.html.ini b/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-001.html.ini deleted file mode 100644 index 9da39e3476d..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-001.html.ini +++ /dev/null @@ -1,51 +0,0 @@ -[parse-justify-content-001.html] - [Checking justify-content: normal] - expected: FAIL - - [Checking justify-content: left] - expected: FAIL - - [Checking justify-content: right] - expected: FAIL - - [Checking justify-content: start] - expected: FAIL - - [Checking justify-content: end] - expected: FAIL - - [Checking justify-content: center] - expected: FAIL - - [Checking justify-content: flex-start] - expected: FAIL - - [Checking justify-content: flex-end] - expected: FAIL - - [Checking justify-content: stretch] - expected: FAIL - - [Checking justify-content: space-around] - expected: FAIL - - [Checking justify-content: space-between] - expected: FAIL - - [Checking justify-content: space-evenly] - expected: FAIL - - [Checking justify-content: safe flex-end] - expected: FAIL - - [Checking justify-content: unsafe end] - expected: FAIL - - [Checking justify-content: safe end] - expected: FAIL - - [Checking justify-content: unsafe flex-start] - expected: FAIL - - [Checking justify-content: safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-002.html.ini b/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-002.html.ini deleted file mode 100644 index 5ced0f03939..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-002.html.ini +++ /dev/null @@ -1,21 +0,0 @@ -[parse-justify-content-002.html] - [Test 'initial' value when nothing is specified] - expected: FAIL - - [Test justify-content: 'initial'] - expected: FAIL - - [Test grid items justify-content: 'initial'] - expected: FAIL - - [Test flex items justify-content: 'initial'] - expected: FAIL - - [Test absolute positioned elements justify-content: 'initial'] - expected: FAIL - - [Test absolute positioned grid items justify-content: 'initial'] - expected: FAIL - - [Test absolute positioned flex items justify-content: 'initial'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-003.html.ini b/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-003.html.ini deleted file mode 100644 index acfa0d145cc..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-003.html.ini +++ /dev/null @@ -1,51 +0,0 @@ -[parse-justify-content-003.html] - [Checking justify-content: normal] - expected: FAIL - - [Checking justify-content: left] - expected: FAIL - - [Checking justify-content: right] - expected: FAIL - - [Checking justify-content: start] - expected: FAIL - - [Checking justify-content: end] - expected: FAIL - - [Checking justify-content: center] - expected: FAIL - - [Checking justify-content: flex-start] - expected: FAIL - - [Checking justify-content: flex-end] - expected: FAIL - - [Checking justify-content: stretch] - expected: FAIL - - [Checking justify-content: space-around] - expected: FAIL - - [Checking justify-content: space-between] - expected: FAIL - - [Checking justify-content: space-evenly] - expected: FAIL - - [Checking justify-content: safe flex-end] - expected: FAIL - - [Checking justify-content: unsafe end] - expected: FAIL - - [Checking justify-content: safe end] - expected: FAIL - - [Checking justify-content: unsafe flex-start] - expected: FAIL - - [Checking justify-content: safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-004.html.ini b/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-004.html.ini deleted file mode 100644 index b8807eb2ec5..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-004.html.ini +++ /dev/null @@ -1,123 +0,0 @@ -[parse-justify-content-004.html] - [Checking invalid combination - justify-content: auto] - expected: FAIL - - [Checking invalid combination - justify-content: legacy] - expected: FAIL - - [Checking invalid combination - justify-content: self-start] - expected: FAIL - - [Checking invalid combination - justify-content: baseline] - expected: FAIL - - [Checking invalid combination - justify-content: first baseline] - expected: FAIL - - [Checking invalid combination - justify-content: last baseline] - expected: FAIL - - [Checking invalid combination - justify-content: auto safe] - expected: FAIL - - [Checking invalid combination - justify-content: auto left] - expected: FAIL - - [Checking invalid combination - justify-content: normal unsafe] - expected: FAIL - - [Checking invalid combination - justify-content: normal stretch] - expected: FAIL - - [Checking invalid combination - justify-content: baseline normal] - expected: FAIL - - [Checking invalid combination - justify-content: baseline center] - expected: FAIL - - [Checking invalid combination - justify-content: first baseline center] - expected: FAIL - - [Checking invalid combination - justify-content: last baseline center] - expected: FAIL - - [Checking invalid combination - justify-content: baseline last] - expected: FAIL - - [Checking invalid combination - justify-content: baseline first] - expected: FAIL - - [Checking invalid combination - justify-content: stretch unsafe] - expected: FAIL - - [Checking invalid combination - justify-content: stretch right] - expected: FAIL - - [Checking invalid combination - justify-content: unsafe unsafe] - expected: FAIL - - [Checking invalid combination - justify-content: unsafe safe] - expected: FAIL - - [Checking invalid combination - justify-content: center start] - expected: FAIL - - [Checking invalid combination - justify-content: unsafe stretch] - expected: FAIL - - [Checking invalid combination - justify-content: safe stretch] - expected: FAIL - - [Checking invalid combination - justify-content: baseline safe] - expected: FAIL - - [Checking invalid combination - justify-content: unsafe baseline] - expected: FAIL - - [Checking invalid combination - justify-content: unsafe safe left] - expected: FAIL - - [Checking invalid combination - justify-content: unsafe left safe] - expected: FAIL - - [Checking invalid combination - justify-content: left safe unsafe safe] - expected: FAIL - - [Checking invalid combination - justify-content: start safe] - expected: FAIL - - [Checking invalid combination - justify-content: safe] - expected: FAIL - - [Checking invalid combination - justify-content: space-between left] - expected: FAIL - - [Checking invalid combination - justify-content: space-around center] - expected: FAIL - - [Checking invalid combination - justify-content: space-evenly right] - expected: FAIL - - [Checking invalid combination - justify-content: stretch safe start] - expected: FAIL - - [Checking invalid combination - justify-content: space-around unsafe] - expected: FAIL - - [Checking invalid combination - justify-content: space-evenly safe flex-start] - expected: FAIL - - [Checking invalid combination - justify-content: space-between safe] - expected: FAIL - - [Checking invalid combination - justify-content: space-between stretch] - expected: FAIL - - [Checking invalid combination - justify-content: stretch start] - expected: FAIL - - [Checking invalid combination - justify-content: stretch baseline] - expected: FAIL - - [Checking invalid combination - justify-content: first baseline space-around] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-005.html.ini b/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-005.html.ini deleted file mode 100644 index 006f8456abf..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/parse-justify-content-005.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[parse-justify-content-005.html] - [Test the value 'inherit' overrides current value ('end')] - expected: FAIL - - [Test the value 'inherit' overrides current value ('safe left')] - expected: FAIL - - [Test the value 'inherit' overrides current value ('unsafe center')] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-001.html.ini b/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-001.html.ini deleted file mode 100644 index 4961c7eb707..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-001.html.ini +++ /dev/null @@ -1,45 +0,0 @@ -[place-content-shorthand-001.html] - [Checking place-content: normal] - expected: FAIL - - [Checking place-content: start] - expected: FAIL - - [Checking place-content: end] - expected: FAIL - - [Checking place-content: center] - expected: FAIL - - [Checking place-content: flex-start] - expected: FAIL - - [Checking place-content: flex-end] - expected: FAIL - - [Checking place-content: stretch] - expected: FAIL - - [Checking place-content: space-around] - expected: FAIL - - [Checking place-content: space-between] - expected: FAIL - - [Checking place-content: space-evenly] - expected: FAIL - - [Checking place-content: safe flex-end] - expected: FAIL - - [Checking place-content: unsafe end] - expected: FAIL - - [Checking place-content: safe end] - expected: FAIL - - [Checking place-content: unsafe flex-start] - expected: FAIL - - [Checking place-content: safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-002.html.ini b/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-002.html.ini deleted file mode 100644 index 2d89cb15245..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-002.html.ini +++ /dev/null @@ -1,648 +0,0 @@ -[place-content-shorthand-002.html] - [Checking place-content: normal normal] - expected: FAIL - - [Checking place-content: normal left] - expected: FAIL - - [Checking place-content: normal right] - expected: FAIL - - [Checking place-content: normal start] - expected: FAIL - - [Checking place-content: normal end] - expected: FAIL - - [Checking place-content: normal center] - expected: FAIL - - [Checking place-content: normal flex-start] - expected: FAIL - - [Checking place-content: normal flex-end] - expected: FAIL - - [Checking place-content: normal stretch] - expected: FAIL - - [Checking place-content: normal space-around] - expected: FAIL - - [Checking place-content: normal space-between] - expected: FAIL - - [Checking place-content: normal space-evenly] - expected: FAIL - - [Checking place-content: start normal] - expected: FAIL - - [Checking place-content: start left] - expected: FAIL - - [Checking place-content: start right] - expected: FAIL - - [Checking place-content: start start] - expected: FAIL - - [Checking place-content: start end] - expected: FAIL - - [Checking place-content: start center] - expected: FAIL - - [Checking place-content: start flex-start] - expected: FAIL - - [Checking place-content: start flex-end] - expected: FAIL - - [Checking place-content: start stretch] - expected: FAIL - - [Checking place-content: start space-around] - expected: FAIL - - [Checking place-content: start space-between] - expected: FAIL - - [Checking place-content: start space-evenly] - expected: FAIL - - [Checking place-content: end normal] - expected: FAIL - - [Checking place-content: end left] - expected: FAIL - - [Checking place-content: end right] - expected: FAIL - - [Checking place-content: end start] - expected: FAIL - - [Checking place-content: end end] - expected: FAIL - - [Checking place-content: end center] - expected: FAIL - - [Checking place-content: end flex-start] - expected: FAIL - - [Checking place-content: end flex-end] - expected: FAIL - - [Checking place-content: end stretch] - expected: FAIL - - [Checking place-content: end space-around] - expected: FAIL - - [Checking place-content: end space-between] - expected: FAIL - - [Checking place-content: end space-evenly] - expected: FAIL - - [Checking place-content: center normal] - expected: FAIL - - [Checking place-content: center left] - expected: FAIL - - [Checking place-content: center right] - expected: FAIL - - [Checking place-content: center start] - expected: FAIL - - [Checking place-content: center end] - expected: FAIL - - [Checking place-content: center center] - expected: FAIL - - [Checking place-content: center flex-start] - expected: FAIL - - [Checking place-content: center flex-end] - expected: FAIL - - [Checking place-content: center stretch] - expected: FAIL - - [Checking place-content: center space-around] - expected: FAIL - - [Checking place-content: center space-between] - expected: FAIL - - [Checking place-content: center space-evenly] - expected: FAIL - - [Checking place-content: flex-start normal] - expected: FAIL - - [Checking place-content: flex-start left] - expected: FAIL - - [Checking place-content: flex-start right] - expected: FAIL - - [Checking place-content: flex-start start] - expected: FAIL - - [Checking place-content: flex-start end] - expected: FAIL - - [Checking place-content: flex-start center] - expected: FAIL - - [Checking place-content: flex-start flex-start] - expected: FAIL - - [Checking place-content: flex-start flex-end] - expected: FAIL - - [Checking place-content: flex-start stretch] - expected: FAIL - - [Checking place-content: flex-start space-around] - expected: FAIL - - [Checking place-content: flex-start space-between] - expected: FAIL - - [Checking place-content: flex-start space-evenly] - expected: FAIL - - [Checking place-content: flex-end normal] - expected: FAIL - - [Checking place-content: flex-end left] - expected: FAIL - - [Checking place-content: flex-end right] - expected: FAIL - - [Checking place-content: flex-end start] - expected: FAIL - - [Checking place-content: flex-end end] - expected: FAIL - - [Checking place-content: flex-end center] - expected: FAIL - - [Checking place-content: flex-end flex-start] - expected: FAIL - - [Checking place-content: flex-end flex-end] - expected: FAIL - - [Checking place-content: flex-end stretch] - expected: FAIL - - [Checking place-content: flex-end space-around] - expected: FAIL - - [Checking place-content: flex-end space-between] - expected: FAIL - - [Checking place-content: flex-end space-evenly] - expected: FAIL - - [Checking place-content: stretch normal] - expected: FAIL - - [Checking place-content: stretch left] - expected: FAIL - - [Checking place-content: stretch right] - expected: FAIL - - [Checking place-content: stretch start] - expected: FAIL - - [Checking place-content: stretch end] - expected: FAIL - - [Checking place-content: stretch center] - expected: FAIL - - [Checking place-content: stretch flex-start] - expected: FAIL - - [Checking place-content: stretch flex-end] - expected: FAIL - - [Checking place-content: stretch stretch] - expected: FAIL - - [Checking place-content: stretch space-around] - expected: FAIL - - [Checking place-content: stretch space-between] - expected: FAIL - - [Checking place-content: stretch space-evenly] - expected: FAIL - - [Checking place-content: space-around normal] - expected: FAIL - - [Checking place-content: space-around left] - expected: FAIL - - [Checking place-content: space-around right] - expected: FAIL - - [Checking place-content: space-around start] - expected: FAIL - - [Checking place-content: space-around end] - expected: FAIL - - [Checking place-content: space-around center] - expected: FAIL - - [Checking place-content: space-around flex-start] - expected: FAIL - - [Checking place-content: space-around flex-end] - expected: FAIL - - [Checking place-content: space-around stretch] - expected: FAIL - - [Checking place-content: space-around space-around] - expected: FAIL - - [Checking place-content: space-around space-between] - expected: FAIL - - [Checking place-content: space-around space-evenly] - expected: FAIL - - [Checking place-content: space-between normal] - expected: FAIL - - [Checking place-content: space-between left] - expected: FAIL - - [Checking place-content: space-between right] - expected: FAIL - - [Checking place-content: space-between start] - expected: FAIL - - [Checking place-content: space-between end] - expected: FAIL - - [Checking place-content: space-between center] - expected: FAIL - - [Checking place-content: space-between flex-start] - expected: FAIL - - [Checking place-content: space-between flex-end] - expected: FAIL - - [Checking place-content: space-between stretch] - expected: FAIL - - [Checking place-content: space-between space-around] - expected: FAIL - - [Checking place-content: space-between space-between] - expected: FAIL - - [Checking place-content: space-between space-evenly] - expected: FAIL - - [Checking place-content: space-evenly normal] - expected: FAIL - - [Checking place-content: space-evenly left] - expected: FAIL - - [Checking place-content: space-evenly right] - expected: FAIL - - [Checking place-content: space-evenly start] - expected: FAIL - - [Checking place-content: space-evenly end] - expected: FAIL - - [Checking place-content: space-evenly center] - expected: FAIL - - [Checking place-content: space-evenly flex-start] - expected: FAIL - - [Checking place-content: space-evenly flex-end] - expected: FAIL - - [Checking place-content: space-evenly stretch] - expected: FAIL - - [Checking place-content: space-evenly space-around] - expected: FAIL - - [Checking place-content: space-evenly space-between] - expected: FAIL - - [Checking place-content: space-evenly space-evenly] - expected: FAIL - - [Checking place-content: baseline normal] - expected: FAIL - - [Checking place-content: baseline left] - expected: FAIL - - [Checking place-content: baseline right] - expected: FAIL - - [Checking place-content: baseline start] - expected: FAIL - - [Checking place-content: baseline end] - expected: FAIL - - [Checking place-content: baseline center] - expected: FAIL - - [Checking place-content: baseline flex-start] - expected: FAIL - - [Checking place-content: baseline flex-end] - expected: FAIL - - [Checking place-content: baseline stretch] - expected: FAIL - - [Checking place-content: baseline space-around] - expected: FAIL - - [Checking place-content: baseline space-between] - expected: FAIL - - [Checking place-content: baseline space-evenly] - expected: FAIL - - [Checking place-content: first baseline normal] - expected: FAIL - - [Checking place-content: first baseline left] - expected: FAIL - - [Checking place-content: first baseline right] - expected: FAIL - - [Checking place-content: first baseline start] - expected: FAIL - - [Checking place-content: first baseline end] - expected: FAIL - - [Checking place-content: first baseline center] - expected: FAIL - - [Checking place-content: first baseline flex-start] - expected: FAIL - - [Checking place-content: first baseline flex-end] - expected: FAIL - - [Checking place-content: first baseline stretch] - expected: FAIL - - [Checking place-content: first baseline space-around] - expected: FAIL - - [Checking place-content: first baseline space-between] - expected: FAIL - - [Checking place-content: first baseline space-evenly] - expected: FAIL - - [Checking place-content: last baseline normal] - expected: FAIL - - [Checking place-content: last baseline left] - expected: FAIL - - [Checking place-content: last baseline right] - expected: FAIL - - [Checking place-content: last baseline start] - expected: FAIL - - [Checking place-content: last baseline end] - expected: FAIL - - [Checking place-content: last baseline center] - expected: FAIL - - [Checking place-content: last baseline flex-start] - expected: FAIL - - [Checking place-content: last baseline flex-end] - expected: FAIL - - [Checking place-content: last baseline stretch] - expected: FAIL - - [Checking place-content: last baseline space-around] - expected: FAIL - - [Checking place-content: last baseline space-between] - expected: FAIL - - [Checking place-content: last baseline space-evenly] - expected: FAIL - - [Checking place-content: safe flex-end normal] - expected: FAIL - - [Checking place-content: safe flex-end left] - expected: FAIL - - [Checking place-content: safe flex-end right] - expected: FAIL - - [Checking place-content: safe flex-end start] - expected: FAIL - - [Checking place-content: safe flex-end end] - expected: FAIL - - [Checking place-content: safe flex-end center] - expected: FAIL - - [Checking place-content: safe flex-end flex-start] - expected: FAIL - - [Checking place-content: safe flex-end flex-end] - expected: FAIL - - [Checking place-content: safe flex-end stretch] - expected: FAIL - - [Checking place-content: safe flex-end space-around] - expected: FAIL - - [Checking place-content: safe flex-end space-between] - expected: FAIL - - [Checking place-content: safe flex-end space-evenly] - expected: FAIL - - [Checking place-content: unsafe end normal] - expected: FAIL - - [Checking place-content: unsafe end left] - expected: FAIL - - [Checking place-content: unsafe end right] - expected: FAIL - - [Checking place-content: unsafe end start] - expected: FAIL - - [Checking place-content: unsafe end end] - expected: FAIL - - [Checking place-content: unsafe end center] - expected: FAIL - - [Checking place-content: unsafe end flex-start] - expected: FAIL - - [Checking place-content: unsafe end flex-end] - expected: FAIL - - [Checking place-content: unsafe end stretch] - expected: FAIL - - [Checking place-content: unsafe end space-around] - expected: FAIL - - [Checking place-content: unsafe end space-between] - expected: FAIL - - [Checking place-content: unsafe end space-evenly] - expected: FAIL - - [Checking place-content: safe end normal] - expected: FAIL - - [Checking place-content: safe end left] - expected: FAIL - - [Checking place-content: safe end right] - expected: FAIL - - [Checking place-content: safe end start] - expected: FAIL - - [Checking place-content: safe end end] - expected: FAIL - - [Checking place-content: safe end center] - expected: FAIL - - [Checking place-content: safe end flex-start] - expected: FAIL - - [Checking place-content: safe end flex-end] - expected: FAIL - - [Checking place-content: safe end stretch] - expected: FAIL - - [Checking place-content: safe end space-around] - expected: FAIL - - [Checking place-content: safe end space-between] - expected: FAIL - - [Checking place-content: safe end space-evenly] - expected: FAIL - - [Checking place-content: unsafe flex-start normal] - expected: FAIL - - [Checking place-content: unsafe flex-start left] - expected: FAIL - - [Checking place-content: unsafe flex-start right] - expected: FAIL - - [Checking place-content: unsafe flex-start start] - expected: FAIL - - [Checking place-content: unsafe flex-start end] - expected: FAIL - - [Checking place-content: unsafe flex-start center] - expected: FAIL - - [Checking place-content: unsafe flex-start flex-start] - expected: FAIL - - [Checking place-content: unsafe flex-start flex-end] - expected: FAIL - - [Checking place-content: unsafe flex-start stretch] - expected: FAIL - - [Checking place-content: unsafe flex-start space-around] - expected: FAIL - - [Checking place-content: unsafe flex-start space-between] - expected: FAIL - - [Checking place-content: unsafe flex-start space-evenly] - expected: FAIL - - [Checking place-content: safe center normal] - expected: FAIL - - [Checking place-content: safe center left] - expected: FAIL - - [Checking place-content: safe center right] - expected: FAIL - - [Checking place-content: safe center start] - expected: FAIL - - [Checking place-content: safe center end] - expected: FAIL - - [Checking place-content: safe center center] - expected: FAIL - - [Checking place-content: safe center flex-start] - expected: FAIL - - [Checking place-content: safe center flex-end] - expected: FAIL - - [Checking place-content: safe center stretch] - expected: FAIL - - [Checking place-content: safe center space-around] - expected: FAIL - - [Checking place-content: safe center space-between] - expected: FAIL - - [Checking place-content: safe center space-evenly] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-003.html.ini b/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-003.html.ini deleted file mode 100644 index f13bcb9c0b4..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-003.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[place-content-shorthand-003.html] - [Check place-content: initial - align-content expanded value] - expected: FAIL - - [Check place-content: initial - justify-content expanded value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-004.html.ini b/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-004.html.ini deleted file mode 100644 index 30869aa330e..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-004.html.ini +++ /dev/null @@ -1,21 +0,0 @@ -[place-content-shorthand-004.html] - [Verify fallback values are invalid] - expected: FAIL - - [Verify 'left' and 'right' values are invalid for block/cross axis alignment] - expected: FAIL - - [Verify values are invalid for the justify-content property] - expected: FAIL - - [Verify numeric values are invalid] - expected: FAIL - - [Verify 'auto' values are invalid] - expected: FAIL - - [Verify self-position values are invalid] - expected: FAIL - - [Verify empty declaration is invalid] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-005.html.ini b/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-005.html.ini deleted file mode 100644 index a11967949dd..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-005.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[place-content-shorthand-005.html] - [Check place-content: inherit - align-content resolved value] - expected: FAIL - - [Check place-content: inherit - justify-content resolved value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-006.html.ini b/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-006.html.ini deleted file mode 100644 index 9da0921c373..00000000000 --- a/tests/wpt/meta/css/css-align/content-distribution/place-content-shorthand-006.html.ini +++ /dev/null @@ -1,66 +0,0 @@ -[place-content-shorthand-006.html] - [Checking place-content: normal normal] - expected: FAIL - - [Checking place-content: start start] - expected: FAIL - - [Checking place-content: end end] - expected: FAIL - - [Checking place-content: center center] - expected: FAIL - - [Checking place-content: flex-start flex-start] - expected: FAIL - - [Checking place-content: flex-end flex-end] - expected: FAIL - - [Checking place-content: stretch stretch] - expected: FAIL - - [Checking place-content: space-around space-around] - expected: FAIL - - [Checking place-content: space-between space-between] - expected: FAIL - - [Checking place-content: space-evenly space-evenly] - expected: FAIL - - [Checking place-content: first baseline normal] - expected: FAIL - - [Checking place-content: first baseline left] - expected: FAIL - - [Checking place-content: first baseline right] - expected: FAIL - - [Checking place-content: first baseline start] - expected: FAIL - - [Checking place-content: first baseline end] - expected: FAIL - - [Checking place-content: first baseline center] - expected: FAIL - - [Checking place-content: first baseline flex-start] - expected: FAIL - - [Checking place-content: first baseline flex-end] - expected: FAIL - - [Checking place-content: first baseline stretch] - expected: FAIL - - [Checking place-content: first baseline space-around] - expected: FAIL - - [Checking place-content: first baseline space-between] - expected: FAIL - - [Checking place-content: first baseline space-evenly] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-001.html.ini b/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-001.html.ini deleted file mode 100644 index 294b8bc4dd3..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-001.html.ini +++ /dev/null @@ -1,51 +0,0 @@ -[parse-align-items-001.html] - [Checking align-items: normal] - expected: FAIL - - [Checking align-items: stretch] - expected: FAIL - - [Checking align-items: start] - expected: FAIL - - [Checking align-items: end] - expected: FAIL - - [Checking align-items: self-start] - expected: FAIL - - [Checking align-items: self-end] - expected: FAIL - - [Checking align-items: center] - expected: FAIL - - [Checking align-items: flex-start] - expected: FAIL - - [Checking align-items: flex-end] - expected: FAIL - - [Checking align-items: baseline] - expected: FAIL - - [Checking align-items: first baseline] - expected: FAIL - - [Checking align-items: last baseline] - expected: FAIL - - [Checking align-items: safe flex-end] - expected: FAIL - - [Checking align-items: unsafe end] - expected: FAIL - - [Checking align-items: safe end] - expected: FAIL - - [Checking align-items: unsafe flex-start] - expected: FAIL - - [Checking align-items: safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-002.html.ini b/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-002.html.ini deleted file mode 100644 index 6c428407139..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-002.html.ini +++ /dev/null @@ -1,21 +0,0 @@ -[parse-align-items-002.html] - [Test 'initial' value when nothing is specified] - expected: FAIL - - [Test align-items: 'initial'] - expected: FAIL - - [Test grid items align-items: 'initial'] - expected: FAIL - - [Test flex items align-items: 'initial'] - expected: FAIL - - [Test absolute positioned elements align-items: 'initial'] - expected: FAIL - - [Test absolute positioned grid items align-items: 'initial'] - expected: FAIL - - [Test absolute positioned flex items align-items: 'initial'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-003.html.ini b/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-003.html.ini deleted file mode 100644 index 2e60dda2a31..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-003.html.ini +++ /dev/null @@ -1,51 +0,0 @@ -[parse-align-items-003.html] - [Checking align-items: normal] - expected: FAIL - - [Checking align-items: stretch] - expected: FAIL - - [Checking align-items: start] - expected: FAIL - - [Checking align-items: end] - expected: FAIL - - [Checking align-items: self-start] - expected: FAIL - - [Checking align-items: self-end] - expected: FAIL - - [Checking align-items: center] - expected: FAIL - - [Checking align-items: flex-start] - expected: FAIL - - [Checking align-items: flex-end] - expected: FAIL - - [Checking align-items: baseline] - expected: FAIL - - [Checking align-items: first baseline] - expected: FAIL - - [Checking align-items: last baseline] - expected: FAIL - - [Checking align-items: safe flex-end] - expected: FAIL - - [Checking align-items: unsafe end] - expected: FAIL - - [Checking align-items: safe end] - expected: FAIL - - [Checking align-items: unsafe flex-start] - expected: FAIL - - [Checking align-items: safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-004.html.ini b/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-004.html.ini deleted file mode 100644 index 0d37798292f..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-004.html.ini +++ /dev/null @@ -1,87 +0,0 @@ -[parse-align-items-004.html] - [Checking invalid combination - align-items: auto] - expected: FAIL - - [Checking invalid combination - align-items: legacy] - expected: FAIL - - [Checking invalid combination - align-items: space-around] - expected: FAIL - - [Checking invalid combination - align-items: left] - expected: FAIL - - [Checking invalid combination - align-items: safe right] - expected: FAIL - - [Checking invalid combination - align-items: auto safe] - expected: FAIL - - [Checking invalid combination - align-items: auto left] - expected: FAIL - - [Checking invalid combination - align-items: normal unsafe] - expected: FAIL - - [Checking invalid combination - align-items: normal stretch] - expected: FAIL - - [Checking invalid combination - align-items: baseline normal] - expected: FAIL - - [Checking invalid combination - align-items: baseline center] - expected: FAIL - - [Checking invalid combination - align-items: first baseline center] - expected: FAIL - - [Checking invalid combination - align-items: last baseline center] - expected: FAIL - - [Checking invalid combination - align-items: baseline last] - expected: FAIL - - [Checking invalid combination - align-items: baseline first] - expected: FAIL - - [Checking invalid combination - align-items: stretch unsafe] - expected: FAIL - - [Checking invalid combination - align-items: stretch right] - expected: FAIL - - [Checking invalid combination - align-items: unsafe unsafe] - expected: FAIL - - [Checking invalid combination - align-items: unsafe safe] - expected: FAIL - - [Checking invalid combination - align-items: center start] - expected: FAIL - - [Checking invalid combination - align-items: unsafe stretch] - expected: FAIL - - [Checking invalid combination - align-items: safe stretch] - expected: FAIL - - [Checking invalid combination - align-items: baseline safe] - expected: FAIL - - [Checking invalid combination - align-items: unsafe baseline] - expected: FAIL - - [Checking invalid combination - align-items: unsafe safe left] - expected: FAIL - - [Checking invalid combination - align-items: unsafe left safe] - expected: FAIL - - [Checking invalid combination - align-items: left safe unsafe safe] - expected: FAIL - - [Checking invalid combination - align-items: start safe] - expected: FAIL - - [Checking invalid combination - align-items: safe] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-005.html.ini b/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-005.html.ini deleted file mode 100644 index d03af6efe66..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/parse-align-items-005.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[parse-align-items-005.html] - [Test the value 'inherit' overrides current value ('end')] - expected: FAIL - - [Test the value 'inherit' overrides current value ('safe start')] - expected: FAIL - - [Test the value 'inherit' overrides current value ('unsafe center')] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-001.html.ini b/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-001.html.ini deleted file mode 100644 index 83b3d696bb1..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-001.html.ini +++ /dev/null @@ -1,66 +0,0 @@ -[parse-justify-items-001.html] - [Checking justify-items: normal] - expected: FAIL - - [Checking justify-items: stretch] - expected: FAIL - - [Checking justify-items: left] - expected: FAIL - - [Checking justify-items: right] - expected: FAIL - - [Checking justify-items: start] - expected: FAIL - - [Checking justify-items: end] - expected: FAIL - - [Checking justify-items: self-start] - expected: FAIL - - [Checking justify-items: self-end] - expected: FAIL - - [Checking justify-items: center] - expected: FAIL - - [Checking justify-items: flex-start] - expected: FAIL - - [Checking justify-items: flex-end] - expected: FAIL - - [Checking justify-items: baseline] - expected: FAIL - - [Checking justify-items: first baseline] - expected: FAIL - - [Checking justify-items: last baseline] - expected: FAIL - - [Checking justify-items: safe flex-end] - expected: FAIL - - [Checking justify-items: unsafe end] - expected: FAIL - - [Checking justify-items: safe end] - expected: FAIL - - [Checking justify-items: unsafe flex-start] - expected: FAIL - - [Checking justify-items: safe center] - expected: FAIL - - [Checking justify-items: legacy left] - expected: FAIL - - [Checking justify-items: legacy center] - expected: FAIL - - [Checking justify-items: legacy right] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-002.html.ini b/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-002.html.ini deleted file mode 100644 index 32f4f788610..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-002.html.ini +++ /dev/null @@ -1,21 +0,0 @@ -[parse-justify-items-002.html] - [Test 'initial' value when nothing is specified] - expected: FAIL - - [Test justify-items: 'initial'] - expected: FAIL - - [Test grid items justify-items: 'initial'] - expected: FAIL - - [Test flex items justify-items: 'initial'] - expected: FAIL - - [Test absolute positioned elements justify-items: 'initial'] - expected: FAIL - - [Test absolute positioned grid items justify-items: 'initial'] - expected: FAIL - - [Test absolute positioned flex items justify-items: 'initial'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-003.html.ini b/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-003.html.ini deleted file mode 100644 index 69277a933c0..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-003.html.ini +++ /dev/null @@ -1,66 +0,0 @@ -[parse-justify-items-003.html] - [Checking justify-items: normal] - expected: FAIL - - [Checking justify-items: stretch] - expected: FAIL - - [Checking justify-items: left] - expected: FAIL - - [Checking justify-items: right] - expected: FAIL - - [Checking justify-items: start] - expected: FAIL - - [Checking justify-items: end] - expected: FAIL - - [Checking justify-items: self-start] - expected: FAIL - - [Checking justify-items: self-end] - expected: FAIL - - [Checking justify-items: center] - expected: FAIL - - [Checking justify-items: flex-start] - expected: FAIL - - [Checking justify-items: flex-end] - expected: FAIL - - [Checking justify-items: baseline] - expected: FAIL - - [Checking justify-items: first baseline] - expected: FAIL - - [Checking justify-items: last baseline] - expected: FAIL - - [Checking justify-items: safe flex-end] - expected: FAIL - - [Checking justify-items: unsafe end] - expected: FAIL - - [Checking justify-items: safe end] - expected: FAIL - - [Checking justify-items: unsafe flex-start] - expected: FAIL - - [Checking justify-items: safe center] - expected: FAIL - - [Checking justify-items: legacy left] - expected: FAIL - - [Checking justify-items: legacy center] - expected: FAIL - - [Checking justify-items: legacy right] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-004.html.ini b/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-004.html.ini deleted file mode 100644 index 3e16306f706..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-004.html.ini +++ /dev/null @@ -1,96 +0,0 @@ -[parse-justify-items-004.html] - [Checking invalid combination - justify-items: auto] - expected: FAIL - - [Checking invalid combination - justify-items: space-around] - expected: FAIL - - [Checking invalid combination - justify-items: auto safe] - expected: FAIL - - [Checking invalid combination - justify-items: auto left] - expected: FAIL - - [Checking invalid combination - justify-items: normal unsafe] - expected: FAIL - - [Checking invalid combination - justify-items: normal stretch] - expected: FAIL - - [Checking invalid combination - justify-items: baseline normal] - expected: FAIL - - [Checking invalid combination - justify-items: baseline center] - expected: FAIL - - [Checking invalid combination - justify-items: first baseline center] - expected: FAIL - - [Checking invalid combination - justify-items: last baseline center] - expected: FAIL - - [Checking invalid combination - justify-items: baseline last] - expected: FAIL - - [Checking invalid combination - justify-items: baseline first] - expected: FAIL - - [Checking invalid combination - justify-items: stretch unsafe] - expected: FAIL - - [Checking invalid combination - justify-items: stretch right] - expected: FAIL - - [Checking invalid combination - justify-items: unsafe unsafe] - expected: FAIL - - [Checking invalid combination - justify-items: unsafe safe] - expected: FAIL - - [Checking invalid combination - justify-items: center start] - expected: FAIL - - [Checking invalid combination - justify-items: unsafe stretch] - expected: FAIL - - [Checking invalid combination - justify-items: safe stretch] - expected: FAIL - - [Checking invalid combination - justify-items: baseline safe] - expected: FAIL - - [Checking invalid combination - justify-items: unsafe baseline] - expected: FAIL - - [Checking invalid combination - justify-items: unsafe safe left] - expected: FAIL - - [Checking invalid combination - justify-items: unsafe left safe] - expected: FAIL - - [Checking invalid combination - justify-items: left safe unsafe safe] - expected: FAIL - - [Checking invalid combination - justify-items: start safe] - expected: FAIL - - [Checking invalid combination - justify-items: safe] - expected: FAIL - - [Checking invalid combination - justify-items: legacy start] - expected: FAIL - - [Checking invalid combination - justify-items: legacy end] - expected: FAIL - - [Checking invalid combination - justify-items: legacy right unsafe] - expected: FAIL - - [Checking invalid combination - justify-items: legacy auto] - expected: FAIL - - [Checking invalid combination - justify-items: legacy stretch] - expected: FAIL - - [Checking invalid combination - justify-items: legacy left right] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-005.html.ini b/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-005.html.ini deleted file mode 100644 index 67766eb6969..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/parse-justify-items-005.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[parse-justify-items-005.html] - [Test the value 'inherit' overrides current value ('end')] - expected: FAIL - - [Test the value 'inherit' overrides current value ('safe left')] - expected: FAIL - - [Test the value 'inherit' overrides current value ('unsafe center')] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-001.html.ini b/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-001.html.ini deleted file mode 100644 index adaf059604b..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-001.html.ini +++ /dev/null @@ -1,51 +0,0 @@ -[place-items-shorthand-001.html] - [Checking place-items: normal] - expected: FAIL - - [Checking place-items: stretch] - expected: FAIL - - [Checking place-items: start] - expected: FAIL - - [Checking place-items: end] - expected: FAIL - - [Checking place-items: self-start] - expected: FAIL - - [Checking place-items: self-end] - expected: FAIL - - [Checking place-items: center] - expected: FAIL - - [Checking place-items: flex-start] - expected: FAIL - - [Checking place-items: flex-end] - expected: FAIL - - [Checking place-items: baseline] - expected: FAIL - - [Checking place-items: first baseline] - expected: FAIL - - [Checking place-items: last baseline] - expected: FAIL - - [Checking place-items: safe flex-end] - expected: FAIL - - [Checking place-items: unsafe end] - expected: FAIL - - [Checking place-items: safe end] - expected: FAIL - - [Checking place-items: unsafe flex-start] - expected: FAIL - - [Checking place-items: safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-002.html.ini b/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-002.html.ini deleted file mode 100644 index 3a50fc37bac..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-002.html.ini +++ /dev/null @@ -1,1122 +0,0 @@ -[place-items-shorthand-002.html] - [Checking place-items: normal left] - expected: FAIL - - [Checking place-items: normal right] - expected: FAIL - - [Checking place-items: normal legacy left] - expected: FAIL - - [Checking place-items: normal legacy center] - expected: FAIL - - [Checking place-items: normal legacy right] - expected: FAIL - - [Checking place-items: normal normal] - expected: FAIL - - [Checking place-items: normal stretch] - expected: FAIL - - [Checking place-items: normal start] - expected: FAIL - - [Checking place-items: normal end] - expected: FAIL - - [Checking place-items: normal self-start] - expected: FAIL - - [Checking place-items: normal self-end] - expected: FAIL - - [Checking place-items: normal center] - expected: FAIL - - [Checking place-items: normal flex-start] - expected: FAIL - - [Checking place-items: normal flex-end] - expected: FAIL - - [Checking place-items: normal baseline] - expected: FAIL - - [Checking place-items: normal first baseline] - expected: FAIL - - [Checking place-items: normal last baseline] - expected: FAIL - - [Checking place-items: normal safe flex-end] - expected: FAIL - - [Checking place-items: normal unsafe end] - expected: FAIL - - [Checking place-items: normal safe end] - expected: FAIL - - [Checking place-items: normal unsafe flex-start] - expected: FAIL - - [Checking place-items: normal safe center] - expected: FAIL - - [Checking place-items: stretch left] - expected: FAIL - - [Checking place-items: stretch right] - expected: FAIL - - [Checking place-items: stretch legacy left] - expected: FAIL - - [Checking place-items: stretch legacy center] - expected: FAIL - - [Checking place-items: stretch legacy right] - expected: FAIL - - [Checking place-items: stretch normal] - expected: FAIL - - [Checking place-items: stretch stretch] - expected: FAIL - - [Checking place-items: stretch start] - expected: FAIL - - [Checking place-items: stretch end] - expected: FAIL - - [Checking place-items: stretch self-start] - expected: FAIL - - [Checking place-items: stretch self-end] - expected: FAIL - - [Checking place-items: stretch center] - expected: FAIL - - [Checking place-items: stretch flex-start] - expected: FAIL - - [Checking place-items: stretch flex-end] - expected: FAIL - - [Checking place-items: stretch baseline] - expected: FAIL - - [Checking place-items: stretch first baseline] - expected: FAIL - - [Checking place-items: stretch last baseline] - expected: FAIL - - [Checking place-items: stretch safe flex-end] - expected: FAIL - - [Checking place-items: stretch unsafe end] - expected: FAIL - - [Checking place-items: stretch safe end] - expected: FAIL - - [Checking place-items: stretch unsafe flex-start] - expected: FAIL - - [Checking place-items: stretch safe center] - expected: FAIL - - [Checking place-items: start left] - expected: FAIL - - [Checking place-items: start right] - expected: FAIL - - [Checking place-items: start legacy left] - expected: FAIL - - [Checking place-items: start legacy center] - expected: FAIL - - [Checking place-items: start legacy right] - expected: FAIL - - [Checking place-items: start normal] - expected: FAIL - - [Checking place-items: start stretch] - expected: FAIL - - [Checking place-items: start start] - expected: FAIL - - [Checking place-items: start end] - expected: FAIL - - [Checking place-items: start self-start] - expected: FAIL - - [Checking place-items: start self-end] - expected: FAIL - - [Checking place-items: start center] - expected: FAIL - - [Checking place-items: start flex-start] - expected: FAIL - - [Checking place-items: start flex-end] - expected: FAIL - - [Checking place-items: start baseline] - expected: FAIL - - [Checking place-items: start first baseline] - expected: FAIL - - [Checking place-items: start last baseline] - expected: FAIL - - [Checking place-items: start safe flex-end] - expected: FAIL - - [Checking place-items: start unsafe end] - expected: FAIL - - [Checking place-items: start safe end] - expected: FAIL - - [Checking place-items: start unsafe flex-start] - expected: FAIL - - [Checking place-items: start safe center] - expected: FAIL - - [Checking place-items: end left] - expected: FAIL - - [Checking place-items: end right] - expected: FAIL - - [Checking place-items: end legacy left] - expected: FAIL - - [Checking place-items: end legacy center] - expected: FAIL - - [Checking place-items: end legacy right] - expected: FAIL - - [Checking place-items: end normal] - expected: FAIL - - [Checking place-items: end stretch] - expected: FAIL - - [Checking place-items: end start] - expected: FAIL - - [Checking place-items: end end] - expected: FAIL - - [Checking place-items: end self-start] - expected: FAIL - - [Checking place-items: end self-end] - expected: FAIL - - [Checking place-items: end center] - expected: FAIL - - [Checking place-items: end flex-start] - expected: FAIL - - [Checking place-items: end flex-end] - expected: FAIL - - [Checking place-items: end baseline] - expected: FAIL - - [Checking place-items: end first baseline] - expected: FAIL - - [Checking place-items: end last baseline] - expected: FAIL - - [Checking place-items: end safe flex-end] - expected: FAIL - - [Checking place-items: end unsafe end] - expected: FAIL - - [Checking place-items: end safe end] - expected: FAIL - - [Checking place-items: end unsafe flex-start] - expected: FAIL - - [Checking place-items: end safe center] - expected: FAIL - - [Checking place-items: self-start left] - expected: FAIL - - [Checking place-items: self-start right] - expected: FAIL - - [Checking place-items: self-start legacy left] - expected: FAIL - - [Checking place-items: self-start legacy center] - expected: FAIL - - [Checking place-items: self-start legacy right] - expected: FAIL - - [Checking place-items: self-start normal] - expected: FAIL - - [Checking place-items: self-start stretch] - expected: FAIL - - [Checking place-items: self-start start] - expected: FAIL - - [Checking place-items: self-start end] - expected: FAIL - - [Checking place-items: self-start self-start] - expected: FAIL - - [Checking place-items: self-start self-end] - expected: FAIL - - [Checking place-items: self-start center] - expected: FAIL - - [Checking place-items: self-start flex-start] - expected: FAIL - - [Checking place-items: self-start flex-end] - expected: FAIL - - [Checking place-items: self-start baseline] - expected: FAIL - - [Checking place-items: self-start first baseline] - expected: FAIL - - [Checking place-items: self-start last baseline] - expected: FAIL - - [Checking place-items: self-start safe flex-end] - expected: FAIL - - [Checking place-items: self-start unsafe end] - expected: FAIL - - [Checking place-items: self-start safe end] - expected: FAIL - - [Checking place-items: self-start unsafe flex-start] - expected: FAIL - - [Checking place-items: self-start safe center] - expected: FAIL - - [Checking place-items: self-end left] - expected: FAIL - - [Checking place-items: self-end right] - expected: FAIL - - [Checking place-items: self-end legacy left] - expected: FAIL - - [Checking place-items: self-end legacy center] - expected: FAIL - - [Checking place-items: self-end legacy right] - expected: FAIL - - [Checking place-items: self-end normal] - expected: FAIL - - [Checking place-items: self-end stretch] - expected: FAIL - - [Checking place-items: self-end start] - expected: FAIL - - [Checking place-items: self-end end] - expected: FAIL - - [Checking place-items: self-end self-start] - expected: FAIL - - [Checking place-items: self-end self-end] - expected: FAIL - - [Checking place-items: self-end center] - expected: FAIL - - [Checking place-items: self-end flex-start] - expected: FAIL - - [Checking place-items: self-end flex-end] - expected: FAIL - - [Checking place-items: self-end baseline] - expected: FAIL - - [Checking place-items: self-end first baseline] - expected: FAIL - - [Checking place-items: self-end last baseline] - expected: FAIL - - [Checking place-items: self-end safe flex-end] - expected: FAIL - - [Checking place-items: self-end unsafe end] - expected: FAIL - - [Checking place-items: self-end safe end] - expected: FAIL - - [Checking place-items: self-end unsafe flex-start] - expected: FAIL - - [Checking place-items: self-end safe center] - expected: FAIL - - [Checking place-items: center left] - expected: FAIL - - [Checking place-items: center right] - expected: FAIL - - [Checking place-items: center legacy left] - expected: FAIL - - [Checking place-items: center legacy center] - expected: FAIL - - [Checking place-items: center legacy right] - expected: FAIL - - [Checking place-items: center normal] - expected: FAIL - - [Checking place-items: center stretch] - expected: FAIL - - [Checking place-items: center start] - expected: FAIL - - [Checking place-items: center end] - expected: FAIL - - [Checking place-items: center self-start] - expected: FAIL - - [Checking place-items: center self-end] - expected: FAIL - - [Checking place-items: center center] - expected: FAIL - - [Checking place-items: center flex-start] - expected: FAIL - - [Checking place-items: center flex-end] - expected: FAIL - - [Checking place-items: center baseline] - expected: FAIL - - [Checking place-items: center first baseline] - expected: FAIL - - [Checking place-items: center last baseline] - expected: FAIL - - [Checking place-items: center safe flex-end] - expected: FAIL - - [Checking place-items: center unsafe end] - expected: FAIL - - [Checking place-items: center safe end] - expected: FAIL - - [Checking place-items: center unsafe flex-start] - expected: FAIL - - [Checking place-items: center safe center] - expected: FAIL - - [Checking place-items: flex-start left] - expected: FAIL - - [Checking place-items: flex-start right] - expected: FAIL - - [Checking place-items: flex-start legacy left] - expected: FAIL - - [Checking place-items: flex-start legacy center] - expected: FAIL - - [Checking place-items: flex-start legacy right] - expected: FAIL - - [Checking place-items: flex-start normal] - expected: FAIL - - [Checking place-items: flex-start stretch] - expected: FAIL - - [Checking place-items: flex-start start] - expected: FAIL - - [Checking place-items: flex-start end] - expected: FAIL - - [Checking place-items: flex-start self-start] - expected: FAIL - - [Checking place-items: flex-start self-end] - expected: FAIL - - [Checking place-items: flex-start center] - expected: FAIL - - [Checking place-items: flex-start flex-start] - expected: FAIL - - [Checking place-items: flex-start flex-end] - expected: FAIL - - [Checking place-items: flex-start baseline] - expected: FAIL - - [Checking place-items: flex-start first baseline] - expected: FAIL - - [Checking place-items: flex-start last baseline] - expected: FAIL - - [Checking place-items: flex-start safe flex-end] - expected: FAIL - - [Checking place-items: flex-start unsafe end] - expected: FAIL - - [Checking place-items: flex-start safe end] - expected: FAIL - - [Checking place-items: flex-start unsafe flex-start] - expected: FAIL - - [Checking place-items: flex-start safe center] - expected: FAIL - - [Checking place-items: flex-end left] - expected: FAIL - - [Checking place-items: flex-end right] - expected: FAIL - - [Checking place-items: flex-end legacy left] - expected: FAIL - - [Checking place-items: flex-end legacy center] - expected: FAIL - - [Checking place-items: flex-end legacy right] - expected: FAIL - - [Checking place-items: flex-end normal] - expected: FAIL - - [Checking place-items: flex-end stretch] - expected: FAIL - - [Checking place-items: flex-end start] - expected: FAIL - - [Checking place-items: flex-end end] - expected: FAIL - - [Checking place-items: flex-end self-start] - expected: FAIL - - [Checking place-items: flex-end self-end] - expected: FAIL - - [Checking place-items: flex-end center] - expected: FAIL - - [Checking place-items: flex-end flex-start] - expected: FAIL - - [Checking place-items: flex-end flex-end] - expected: FAIL - - [Checking place-items: flex-end baseline] - expected: FAIL - - [Checking place-items: flex-end first baseline] - expected: FAIL - - [Checking place-items: flex-end last baseline] - expected: FAIL - - [Checking place-items: flex-end safe flex-end] - expected: FAIL - - [Checking place-items: flex-end unsafe end] - expected: FAIL - - [Checking place-items: flex-end safe end] - expected: FAIL - - [Checking place-items: flex-end unsafe flex-start] - expected: FAIL - - [Checking place-items: flex-end safe center] - expected: FAIL - - [Checking place-items: baseline left] - expected: FAIL - - [Checking place-items: baseline right] - expected: FAIL - - [Checking place-items: baseline legacy left] - expected: FAIL - - [Checking place-items: baseline legacy center] - expected: FAIL - - [Checking place-items: baseline legacy right] - expected: FAIL - - [Checking place-items: baseline normal] - expected: FAIL - - [Checking place-items: baseline stretch] - expected: FAIL - - [Checking place-items: baseline start] - expected: FAIL - - [Checking place-items: baseline end] - expected: FAIL - - [Checking place-items: baseline self-start] - expected: FAIL - - [Checking place-items: baseline self-end] - expected: FAIL - - [Checking place-items: baseline center] - expected: FAIL - - [Checking place-items: baseline flex-start] - expected: FAIL - - [Checking place-items: baseline flex-end] - expected: FAIL - - [Checking place-items: baseline baseline] - expected: FAIL - - [Checking place-items: baseline first baseline] - expected: FAIL - - [Checking place-items: baseline last baseline] - expected: FAIL - - [Checking place-items: baseline safe flex-end] - expected: FAIL - - [Checking place-items: baseline unsafe end] - expected: FAIL - - [Checking place-items: baseline safe end] - expected: FAIL - - [Checking place-items: baseline unsafe flex-start] - expected: FAIL - - [Checking place-items: baseline safe center] - expected: FAIL - - [Checking place-items: first baseline left] - expected: FAIL - - [Checking place-items: first baseline right] - expected: FAIL - - [Checking place-items: first baseline legacy left] - expected: FAIL - - [Checking place-items: first baseline legacy center] - expected: FAIL - - [Checking place-items: first baseline legacy right] - expected: FAIL - - [Checking place-items: first baseline normal] - expected: FAIL - - [Checking place-items: first baseline stretch] - expected: FAIL - - [Checking place-items: first baseline start] - expected: FAIL - - [Checking place-items: first baseline end] - expected: FAIL - - [Checking place-items: first baseline self-start] - expected: FAIL - - [Checking place-items: first baseline self-end] - expected: FAIL - - [Checking place-items: first baseline center] - expected: FAIL - - [Checking place-items: first baseline flex-start] - expected: FAIL - - [Checking place-items: first baseline flex-end] - expected: FAIL - - [Checking place-items: first baseline baseline] - expected: FAIL - - [Checking place-items: first baseline first baseline] - expected: FAIL - - [Checking place-items: first baseline last baseline] - expected: FAIL - - [Checking place-items: first baseline safe flex-end] - expected: FAIL - - [Checking place-items: first baseline unsafe end] - expected: FAIL - - [Checking place-items: first baseline safe end] - expected: FAIL - - [Checking place-items: first baseline unsafe flex-start] - expected: FAIL - - [Checking place-items: first baseline safe center] - expected: FAIL - - [Checking place-items: last baseline left] - expected: FAIL - - [Checking place-items: last baseline right] - expected: FAIL - - [Checking place-items: last baseline legacy left] - expected: FAIL - - [Checking place-items: last baseline legacy center] - expected: FAIL - - [Checking place-items: last baseline legacy right] - expected: FAIL - - [Checking place-items: last baseline normal] - expected: FAIL - - [Checking place-items: last baseline stretch] - expected: FAIL - - [Checking place-items: last baseline start] - expected: FAIL - - [Checking place-items: last baseline end] - expected: FAIL - - [Checking place-items: last baseline self-start] - expected: FAIL - - [Checking place-items: last baseline self-end] - expected: FAIL - - [Checking place-items: last baseline center] - expected: FAIL - - [Checking place-items: last baseline flex-start] - expected: FAIL - - [Checking place-items: last baseline flex-end] - expected: FAIL - - [Checking place-items: last baseline baseline] - expected: FAIL - - [Checking place-items: last baseline first baseline] - expected: FAIL - - [Checking place-items: last baseline last baseline] - expected: FAIL - - [Checking place-items: last baseline safe flex-end] - expected: FAIL - - [Checking place-items: last baseline unsafe end] - expected: FAIL - - [Checking place-items: last baseline safe end] - expected: FAIL - - [Checking place-items: last baseline unsafe flex-start] - expected: FAIL - - [Checking place-items: last baseline safe center] - expected: FAIL - - [Checking place-items: safe flex-end left] - expected: FAIL - - [Checking place-items: safe flex-end right] - expected: FAIL - - [Checking place-items: safe flex-end legacy left] - expected: FAIL - - [Checking place-items: safe flex-end legacy center] - expected: FAIL - - [Checking place-items: safe flex-end legacy right] - expected: FAIL - - [Checking place-items: safe flex-end normal] - expected: FAIL - - [Checking place-items: safe flex-end stretch] - expected: FAIL - - [Checking place-items: safe flex-end start] - expected: FAIL - - [Checking place-items: safe flex-end end] - expected: FAIL - - [Checking place-items: safe flex-end self-start] - expected: FAIL - - [Checking place-items: safe flex-end self-end] - expected: FAIL - - [Checking place-items: safe flex-end center] - expected: FAIL - - [Checking place-items: safe flex-end flex-start] - expected: FAIL - - [Checking place-items: safe flex-end flex-end] - expected: FAIL - - [Checking place-items: safe flex-end baseline] - expected: FAIL - - [Checking place-items: safe flex-end first baseline] - expected: FAIL - - [Checking place-items: safe flex-end last baseline] - expected: FAIL - - [Checking place-items: safe flex-end safe flex-end] - expected: FAIL - - [Checking place-items: safe flex-end unsafe end] - expected: FAIL - - [Checking place-items: safe flex-end safe end] - expected: FAIL - - [Checking place-items: safe flex-end unsafe flex-start] - expected: FAIL - - [Checking place-items: safe flex-end safe center] - expected: FAIL - - [Checking place-items: unsafe end left] - expected: FAIL - - [Checking place-items: unsafe end right] - expected: FAIL - - [Checking place-items: unsafe end legacy left] - expected: FAIL - - [Checking place-items: unsafe end legacy center] - expected: FAIL - - [Checking place-items: unsafe end legacy right] - expected: FAIL - - [Checking place-items: unsafe end normal] - expected: FAIL - - [Checking place-items: unsafe end stretch] - expected: FAIL - - [Checking place-items: unsafe end start] - expected: FAIL - - [Checking place-items: unsafe end end] - expected: FAIL - - [Checking place-items: unsafe end self-start] - expected: FAIL - - [Checking place-items: unsafe end self-end] - expected: FAIL - - [Checking place-items: unsafe end center] - expected: FAIL - - [Checking place-items: unsafe end flex-start] - expected: FAIL - - [Checking place-items: unsafe end flex-end] - expected: FAIL - - [Checking place-items: unsafe end baseline] - expected: FAIL - - [Checking place-items: unsafe end first baseline] - expected: FAIL - - [Checking place-items: unsafe end last baseline] - expected: FAIL - - [Checking place-items: unsafe end safe flex-end] - expected: FAIL - - [Checking place-items: unsafe end unsafe end] - expected: FAIL - - [Checking place-items: unsafe end safe end] - expected: FAIL - - [Checking place-items: unsafe end unsafe flex-start] - expected: FAIL - - [Checking place-items: unsafe end safe center] - expected: FAIL - - [Checking place-items: safe end left] - expected: FAIL - - [Checking place-items: safe end right] - expected: FAIL - - [Checking place-items: safe end legacy left] - expected: FAIL - - [Checking place-items: safe end legacy center] - expected: FAIL - - [Checking place-items: safe end legacy right] - expected: FAIL - - [Checking place-items: safe end normal] - expected: FAIL - - [Checking place-items: safe end stretch] - expected: FAIL - - [Checking place-items: safe end start] - expected: FAIL - - [Checking place-items: safe end end] - expected: FAIL - - [Checking place-items: safe end self-start] - expected: FAIL - - [Checking place-items: safe end self-end] - expected: FAIL - - [Checking place-items: safe end center] - expected: FAIL - - [Checking place-items: safe end flex-start] - expected: FAIL - - [Checking place-items: safe end flex-end] - expected: FAIL - - [Checking place-items: safe end baseline] - expected: FAIL - - [Checking place-items: safe end first baseline] - expected: FAIL - - [Checking place-items: safe end last baseline] - expected: FAIL - - [Checking place-items: safe end safe flex-end] - expected: FAIL - - [Checking place-items: safe end unsafe end] - expected: FAIL - - [Checking place-items: safe end safe end] - expected: FAIL - - [Checking place-items: safe end unsafe flex-start] - expected: FAIL - - [Checking place-items: safe end safe center] - expected: FAIL - - [Checking place-items: unsafe flex-start left] - expected: FAIL - - [Checking place-items: unsafe flex-start right] - expected: FAIL - - [Checking place-items: unsafe flex-start legacy left] - expected: FAIL - - [Checking place-items: unsafe flex-start legacy center] - expected: FAIL - - [Checking place-items: unsafe flex-start legacy right] - expected: FAIL - - [Checking place-items: unsafe flex-start normal] - expected: FAIL - - [Checking place-items: unsafe flex-start stretch] - expected: FAIL - - [Checking place-items: unsafe flex-start start] - expected: FAIL - - [Checking place-items: unsafe flex-start end] - expected: FAIL - - [Checking place-items: unsafe flex-start self-start] - expected: FAIL - - [Checking place-items: unsafe flex-start self-end] - expected: FAIL - - [Checking place-items: unsafe flex-start center] - expected: FAIL - - [Checking place-items: unsafe flex-start flex-start] - expected: FAIL - - [Checking place-items: unsafe flex-start flex-end] - expected: FAIL - - [Checking place-items: unsafe flex-start baseline] - expected: FAIL - - [Checking place-items: unsafe flex-start first baseline] - expected: FAIL - - [Checking place-items: unsafe flex-start last baseline] - expected: FAIL - - [Checking place-items: unsafe flex-start safe flex-end] - expected: FAIL - - [Checking place-items: unsafe flex-start unsafe end] - expected: FAIL - - [Checking place-items: unsafe flex-start safe end] - expected: FAIL - - [Checking place-items: unsafe flex-start unsafe flex-start] - expected: FAIL - - [Checking place-items: unsafe flex-start safe center] - expected: FAIL - - [Checking place-items: safe center left] - expected: FAIL - - [Checking place-items: safe center right] - expected: FAIL - - [Checking place-items: safe center legacy left] - expected: FAIL - - [Checking place-items: safe center legacy center] - expected: FAIL - - [Checking place-items: safe center legacy right] - expected: FAIL - - [Checking place-items: safe center normal] - expected: FAIL - - [Checking place-items: safe center stretch] - expected: FAIL - - [Checking place-items: safe center start] - expected: FAIL - - [Checking place-items: safe center end] - expected: FAIL - - [Checking place-items: safe center self-start] - expected: FAIL - - [Checking place-items: safe center self-end] - expected: FAIL - - [Checking place-items: safe center center] - expected: FAIL - - [Checking place-items: safe center flex-start] - expected: FAIL - - [Checking place-items: safe center flex-end] - expected: FAIL - - [Checking place-items: safe center baseline] - expected: FAIL - - [Checking place-items: safe center first baseline] - expected: FAIL - - [Checking place-items: safe center last baseline] - expected: FAIL - - [Checking place-items: safe center safe flex-end] - expected: FAIL - - [Checking place-items: safe center unsafe end] - expected: FAIL - - [Checking place-items: safe center safe end] - expected: FAIL - - [Checking place-items: safe center unsafe flex-start] - expected: FAIL - - [Checking place-items: safe center safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-003.html.ini b/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-003.html.ini deleted file mode 100644 index ce57cb7dbf4..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-003.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[place-items-shorthand-003.html] - [Check place-items: initial - align-items expanded value] - expected: FAIL - - [Check place-items: initial - justify-items expanded value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-004.html.ini b/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-004.html.ini deleted file mode 100644 index af3e911c8c6..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-004.html.ini +++ /dev/null @@ -1,12 +0,0 @@ -[place-items-shorthand-004.html] - [Verify fallback values are invalid] - expected: FAIL - - [Verify 'left' and 'right' values are invalid for block/cross axis alignment] - expected: FAIL - - [Verify numeric values are invalid] - expected: FAIL - - [Verify empty declaration is invalid] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-005.html.ini b/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-005.html.ini deleted file mode 100644 index daff0fc1a58..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-005.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[place-items-shorthand-005.html] - [Check place-items: inherit - align-items resolved value] - expected: FAIL - - [Check place-items: inherit - justify-items resolved value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-006.html.ini b/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-006.html.ini deleted file mode 100644 index 9f20f450482..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/place-items-shorthand-006.html.ini +++ /dev/null @@ -1,108 +0,0 @@ -[place-items-shorthand-006.html] - [Checking place-items: normal normal] - expected: FAIL - - [Checking place-items: normal first baseline] - expected: FAIL - - [Checking place-items: stretch stretch] - expected: FAIL - - [Checking place-items: stretch first baseline] - expected: FAIL - - [Checking place-items: start start] - expected: FAIL - - [Checking place-items: start first baseline] - expected: FAIL - - [Checking place-items: end end] - expected: FAIL - - [Checking place-items: end first baseline] - expected: FAIL - - [Checking place-items: self-start self-start] - expected: FAIL - - [Checking place-items: self-start first baseline] - expected: FAIL - - [Checking place-items: self-end self-end] - expected: FAIL - - [Checking place-items: self-end first baseline] - expected: FAIL - - [Checking place-items: center center] - expected: FAIL - - [Checking place-items: center first baseline] - expected: FAIL - - [Checking place-items: flex-start flex-start] - expected: FAIL - - [Checking place-items: flex-start first baseline] - expected: FAIL - - [Checking place-items: flex-end flex-end] - expected: FAIL - - [Checking place-items: flex-end first baseline] - expected: FAIL - - [Checking place-items: baseline baseline] - expected: FAIL - - [Checking place-items: baseline first baseline] - expected: FAIL - - [Checking place-items: first baseline left] - expected: FAIL - - [Checking place-items: first baseline right] - expected: FAIL - - [Checking place-items: first baseline normal] - expected: FAIL - - [Checking place-items: first baseline stretch] - expected: FAIL - - [Checking place-items: first baseline start] - expected: FAIL - - [Checking place-items: first baseline end] - expected: FAIL - - [Checking place-items: first baseline self-start] - expected: FAIL - - [Checking place-items: first baseline self-end] - expected: FAIL - - [Checking place-items: first baseline center] - expected: FAIL - - [Checking place-items: first baseline flex-start] - expected: FAIL - - [Checking place-items: first baseline flex-end] - expected: FAIL - - [Checking place-items: first baseline baseline] - expected: FAIL - - [Checking place-items: first baseline first baseline] - expected: FAIL - - [Checking place-items: first baseline last baseline] - expected: FAIL - - [Checking place-items: last baseline first baseline] - expected: FAIL - - [Checking place-items: last baseline last baseline] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/default-alignment/shorthand-serialization-001.html.ini b/tests/wpt/meta/css/css-align/default-alignment/shorthand-serialization-001.html.ini deleted file mode 100644 index 72aab7d5d6c..00000000000 --- a/tests/wpt/meta/css/css-align/default-alignment/shorthand-serialization-001.html.ini +++ /dev/null @@ -1,51 +0,0 @@ -[shorthand-serialization-001.html] - [test shorthand serialization {"alignContent":"center","shorthand":"center normal"}] - expected: FAIL - - [test shorthand serialization {"alignContent":"baseline safe right","shorthand":""}] - expected: FAIL - - [test shorthand serialization {"justifyContent":"safe start","shorthand":"normal safe start"}] - expected: FAIL - - [test shorthand serialization {"justifyContent":"unsafe start","shorthand":["normal unsafe start"\]}] - expected: FAIL - - [test shorthand serialization {"justifyContent":"space-evenly start","shorthand":""}] - expected: FAIL - - [test shorthand serialization {"alignContent":"start","justifyContent":"end","shorthand":"start end"}] - expected: FAIL - - [test shorthand serialization {"alignItems":"center","shorthand":"center legacy"}] - expected: FAIL - - [test shorthand serialization {"alignItems":"baseline","shorthand":"baseline legacy"}] - expected: FAIL - - [test shorthand serialization {"justifyItems":"safe start","shorthand":"normal safe start"}] - expected: FAIL - - [test shorthand serialization {"justifyItems":"unsafe start","shorthand":["normal unsafe start"\]}] - expected: FAIL - - [test shorthand serialization {"justifyItems":"stretch","shorthand":"normal stretch"}] - expected: FAIL - - [test shorthand serialization {"justifyItems":"left legacy","shorthand":"normal legacy left"}] - expected: FAIL - - [test shorthand serialization {"alignItems":"stretch","justifyItems":"end","shorthand":"stretch end"}] - expected: FAIL - - [test shorthand serialization {"alignSelf":"self-end safe","shorthand":""}] - expected: FAIL - - [test shorthand serialization {"justifySelf":"unsafe start","shorthand":["auto start","auto unsafe start"\]}] - expected: FAIL - - [test shorthand serialization {"justifySelf":"last baseline start","shorthand":""}] - expected: FAIL - - [test shorthand serialization {"alignSelf":"baseline","justifySelf":"last baseline","shorthand":"baseline last baseline"}] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/inheritance.html.ini b/tests/wpt/meta/css/css-align/inheritance.html.ini index 03cec0d5061..157bb5d994c 100644 --- a/tests/wpt/meta/css/css-align/inheritance.html.ini +++ b/tests/wpt/meta/css/css-align/inheritance.html.ini @@ -1,46 +1,13 @@ [inheritance.html] - [Property align-content has initial value normal] - expected: FAIL - - [Property align-content does not inherit] - expected: FAIL - - [Property align-items has initial value normal] - expected: FAIL - - [Property align-items does not inherit] - expected: FAIL - - [Property align-self has initial value auto] - expected: FAIL - - [Property align-self does not inherit] - expected: FAIL - [Property column-gap has initial value normal] expected: FAIL [Property column-gap does not inherit] expected: FAIL - [Property justify-content has initial value normal] - expected: FAIL - - [Property justify-content does not inherit] - expected: FAIL - [Property justify-items has initial value legacy center] expected: FAIL - [Property justify-items does not inherit] - expected: FAIL - - [Property justify-self has initial value auto] - expected: FAIL - - [Property justify-self does not inherit] - expected: FAIL - [Property row-gap has initial value normal] expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/align-content-computed.html.ini b/tests/wpt/meta/css/css-align/parsing/align-content-computed.html.ini deleted file mode 100644 index ef8440df717..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/align-content-computed.html.ini +++ /dev/null @@ -1,42 +0,0 @@ -[align-content-computed.html] - [Property align-content value 'normal'] - expected: FAIL - - [Property align-content value 'baseline'] - expected: FAIL - - [Property align-content value 'last baseline'] - expected: FAIL - - [Property align-content value 'space-between'] - expected: FAIL - - [Property align-content value 'space-around'] - expected: FAIL - - [Property align-content value 'space-evenly'] - expected: FAIL - - [Property align-content value 'stretch'] - expected: FAIL - - [Property align-content value 'center'] - expected: FAIL - - [Property align-content value 'start'] - expected: FAIL - - [Property align-content value 'end'] - expected: FAIL - - [Property align-content value 'flex-start'] - expected: FAIL - - [Property align-content value 'flex-end'] - expected: FAIL - - [Property align-content value 'unsafe end'] - expected: FAIL - - [Property align-content value 'safe flex-start'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/align-content-valid.html.ini b/tests/wpt/meta/css/css-align/parsing/align-content-valid.html.ini deleted file mode 100644 index cd4d408e3b9..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/align-content-valid.html.ini +++ /dev/null @@ -1,45 +0,0 @@ -[align-content-valid.html] - [e.style['align-content'\] = "normal" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "baseline" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "first baseline" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "last baseline" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "space-between" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "space-around" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "space-evenly" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "stretch" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "center" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "start" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "end" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "flex-start" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "flex-end" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "unsafe end" should set the property value] - expected: FAIL - - [e.style['align-content'\] = "safe flex-start" should set the property value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/align-items-computed.html.ini b/tests/wpt/meta/css/css-align/parsing/align-items-computed.html.ini deleted file mode 100644 index 29eb0260d2a..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/align-items-computed.html.ini +++ /dev/null @@ -1,39 +0,0 @@ -[align-items-computed.html] - [Property align-items value 'normal'] - expected: FAIL - - [Property align-items value 'stretch'] - expected: FAIL - - [Property align-items value 'baseline'] - expected: FAIL - - [Property align-items value 'last baseline'] - expected: FAIL - - [Property align-items value 'center'] - expected: FAIL - - [Property align-items value 'start'] - expected: FAIL - - [Property align-items value 'end'] - expected: FAIL - - [Property align-items value 'self-start'] - expected: FAIL - - [Property align-items value 'self-end'] - expected: FAIL - - [Property align-items value 'flex-start'] - expected: FAIL - - [Property align-items value 'flex-end'] - expected: FAIL - - [Property align-items value 'unsafe center'] - expected: FAIL - - [Property align-items value 'safe self-end'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/align-items-valid.html.ini b/tests/wpt/meta/css/css-align/parsing/align-items-valid.html.ini deleted file mode 100644 index e68bf91564c..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/align-items-valid.html.ini +++ /dev/null @@ -1,42 +0,0 @@ -[align-items-valid.html] - [e.style['align-items'\] = "normal" should set the property value] - expected: FAIL - - [e.style['align-items'\] = "stretch" should set the property value] - expected: FAIL - - [e.style['align-items'\] = "baseline" should set the property value] - expected: FAIL - - [e.style['align-items'\] = "first baseline" should set the property value] - expected: FAIL - - [e.style['align-items'\] = "last baseline" should set the property value] - expected: FAIL - - [e.style['align-items'\] = "center" should set the property value] - expected: FAIL - - [e.style['align-items'\] = "start" should set the property value] - expected: FAIL - - [e.style['align-items'\] = "end" should set the property value] - expected: FAIL - - [e.style['align-items'\] = "self-start" should set the property value] - expected: FAIL - - [e.style['align-items'\] = "self-end" should set the property value] - expected: FAIL - - [e.style['align-items'\] = "flex-start" should set the property value] - expected: FAIL - - [e.style['align-items'\] = "flex-end" should set the property value] - expected: FAIL - - [e.style['align-items'\] = "unsafe center" should set the property value] - expected: FAIL - - [e.style['align-items'\] = "safe self-end" should set the property value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/align-self-computed.html.ini b/tests/wpt/meta/css/css-align/parsing/align-self-computed.html.ini deleted file mode 100644 index 9007c255e81..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/align-self-computed.html.ini +++ /dev/null @@ -1,42 +0,0 @@ -[align-self-computed.html] - [Property align-self value 'auto'] - expected: FAIL - - [Property align-self value 'normal'] - expected: FAIL - - [Property align-self value 'stretch'] - expected: FAIL - - [Property align-self value 'baseline'] - expected: FAIL - - [Property align-self value 'last baseline'] - expected: FAIL - - [Property align-self value 'center'] - expected: FAIL - - [Property align-self value 'start'] - expected: FAIL - - [Property align-self value 'end'] - expected: FAIL - - [Property align-self value 'self-start'] - expected: FAIL - - [Property align-self value 'self-end'] - expected: FAIL - - [Property align-self value 'flex-start'] - expected: FAIL - - [Property align-self value 'flex-end'] - expected: FAIL - - [Property align-self value 'unsafe center'] - expected: FAIL - - [Property align-self value 'safe self-end'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/align-self-valid.html.ini b/tests/wpt/meta/css/css-align/parsing/align-self-valid.html.ini deleted file mode 100644 index 4cece537894..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/align-self-valid.html.ini +++ /dev/null @@ -1,45 +0,0 @@ -[align-self-valid.html] - [e.style['align-self'\] = "auto" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "normal" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "stretch" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "baseline" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "first baseline" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "last baseline" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "center" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "start" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "end" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "self-start" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "self-end" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "flex-start" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "flex-end" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "unsafe center" should set the property value] - expected: FAIL - - [e.style['align-self'\] = "safe self-end" should set the property value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/justify-content-computed.html.ini b/tests/wpt/meta/css/css-align/parsing/justify-content-computed.html.ini deleted file mode 100644 index 3dae203d085..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/justify-content-computed.html.ini +++ /dev/null @@ -1,42 +0,0 @@ -[justify-content-computed.html] - [Property justify-content value 'normal'] - expected: FAIL - - [Property justify-content value 'space-between'] - expected: FAIL - - [Property justify-content value 'space-around'] - expected: FAIL - - [Property justify-content value 'space-evenly'] - expected: FAIL - - [Property justify-content value 'stretch'] - expected: FAIL - - [Property justify-content value 'center'] - expected: FAIL - - [Property justify-content value 'start'] - expected: FAIL - - [Property justify-content value 'end'] - expected: FAIL - - [Property justify-content value 'flex-start'] - expected: FAIL - - [Property justify-content value 'flex-end'] - expected: FAIL - - [Property justify-content value 'unsafe end'] - expected: FAIL - - [Property justify-content value 'safe flex-start'] - expected: FAIL - - [Property justify-content value 'left'] - expected: FAIL - - [Property justify-content value 'unsafe right'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/justify-content-valid.html.ini b/tests/wpt/meta/css/css-align/parsing/justify-content-valid.html.ini deleted file mode 100644 index 792a5d3a829..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/justify-content-valid.html.ini +++ /dev/null @@ -1,42 +0,0 @@ -[justify-content-valid.html] - [e.style['justify-content'\] = "normal" should set the property value] - expected: FAIL - - [e.style['justify-content'\] = "space-between" should set the property value] - expected: FAIL - - [e.style['justify-content'\] = "space-around" should set the property value] - expected: FAIL - - [e.style['justify-content'\] = "space-evenly" should set the property value] - expected: FAIL - - [e.style['justify-content'\] = "stretch" should set the property value] - expected: FAIL - - [e.style['justify-content'\] = "center" should set the property value] - expected: FAIL - - [e.style['justify-content'\] = "start" should set the property value] - expected: FAIL - - [e.style['justify-content'\] = "end" should set the property value] - expected: FAIL - - [e.style['justify-content'\] = "flex-start" should set the property value] - expected: FAIL - - [e.style['justify-content'\] = "flex-end" should set the property value] - expected: FAIL - - [e.style['justify-content'\] = "unsafe end" should set the property value] - expected: FAIL - - [e.style['justify-content'\] = "safe flex-start" should set the property value] - expected: FAIL - - [e.style['justify-content'\] = "left" should set the property value] - expected: FAIL - - [e.style['justify-content'\] = "unsafe right" should set the property value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/justify-items-computed.html.ini b/tests/wpt/meta/css/css-align/parsing/justify-items-computed.html.ini index 18d471e6a47..f7fdc0700b2 100644 --- a/tests/wpt/meta/css/css-align/parsing/justify-items-computed.html.ini +++ b/tests/wpt/meta/css/css-align/parsing/justify-items-computed.html.ini @@ -1,60 +1,3 @@ [justify-items-computed.html] - [Property justify-items value 'normal'] - expected: FAIL - - [Property justify-items value 'stretch'] - expected: FAIL - - [Property justify-items value 'baseline'] - expected: FAIL - - [Property justify-items value 'last baseline'] - expected: FAIL - - [Property justify-items value 'center'] - expected: FAIL - - [Property justify-items value 'start'] - expected: FAIL - - [Property justify-items value 'end'] - expected: FAIL - - [Property justify-items value 'self-start'] - expected: FAIL - - [Property justify-items value 'self-end'] - expected: FAIL - - [Property justify-items value 'flex-start'] - expected: FAIL - - [Property justify-items value 'flex-end'] - expected: FAIL - - [Property justify-items value 'unsafe center'] - expected: FAIL - - [Property justify-items value 'safe self-end'] - expected: FAIL - - [Property justify-items value 'right'] - expected: FAIL - - [Property justify-items value 'safe left'] - expected: FAIL - - [Property justify-items value 'legacy'] - expected: FAIL - - [Property justify-items value 'legacy left'] - expected: FAIL - - [Property justify-items value 'legacy right'] - expected: FAIL - - [Property justify-items value 'legacy center'] - expected: FAIL - [justify-items legacy depends on inherited value] expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/justify-items-valid.html.ini b/tests/wpt/meta/css/css-align/parsing/justify-items-valid.html.ini deleted file mode 100644 index 893c7c92263..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/justify-items-valid.html.ini +++ /dev/null @@ -1,60 +0,0 @@ -[justify-items-valid.html] - [e.style['justify-items'\] = "normal" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "stretch" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "baseline" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "first baseline" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "last baseline" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "center" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "start" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "end" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "self-start" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "self-end" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "flex-start" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "flex-end" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "unsafe center" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "safe self-end" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "right" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "safe left" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "legacy" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "left legacy" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "right legacy" should set the property value] - expected: FAIL - - [e.style['justify-items'\] = "center legacy" should set the property value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/justify-self-computed.html.ini b/tests/wpt/meta/css/css-align/parsing/justify-self-computed.html.ini deleted file mode 100644 index 4762465fd0e..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/justify-self-computed.html.ini +++ /dev/null @@ -1,48 +0,0 @@ -[justify-self-computed.html] - [Property justify-self value 'auto'] - expected: FAIL - - [Property justify-self value 'normal'] - expected: FAIL - - [Property justify-self value 'stretch'] - expected: FAIL - - [Property justify-self value 'baseline'] - expected: FAIL - - [Property justify-self value 'last baseline'] - expected: FAIL - - [Property justify-self value 'center'] - expected: FAIL - - [Property justify-self value 'start'] - expected: FAIL - - [Property justify-self value 'end'] - expected: FAIL - - [Property justify-self value 'self-start'] - expected: FAIL - - [Property justify-self value 'self-end'] - expected: FAIL - - [Property justify-self value 'flex-start'] - expected: FAIL - - [Property justify-self value 'flex-end'] - expected: FAIL - - [Property justify-self value 'unsafe center'] - expected: FAIL - - [Property justify-self value 'safe self-end'] - expected: FAIL - - [Property justify-self value 'left'] - expected: FAIL - - [Property justify-self value 'unsafe right'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/justify-self-valid.html.ini b/tests/wpt/meta/css/css-align/parsing/justify-self-valid.html.ini deleted file mode 100644 index 8cca1d0c4f9..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/justify-self-valid.html.ini +++ /dev/null @@ -1,51 +0,0 @@ -[justify-self-valid.html] - [e.style['justify-self'\] = "auto" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "normal" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "stretch" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "baseline" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "first baseline" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "last baseline" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "center" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "start" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "end" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "self-start" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "self-end" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "flex-start" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "flex-end" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "unsafe center" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "safe self-end" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "left" should set the property value] - expected: FAIL - - [e.style['justify-self'\] = "unsafe right" should set the property value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/place-content-computed.html.ini b/tests/wpt/meta/css/css-align/parsing/place-content-computed.html.ini deleted file mode 100644 index 87c4929f137..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/place-content-computed.html.ini +++ /dev/null @@ -1,69 +0,0 @@ -[place-content-computed.html] - [Property place-content value 'normal normal'] - expected: FAIL - - [Property place-content value 'first baseline'] - expected: FAIL - - [Property place-content value 'baseline'] - expected: FAIL - - [Property place-content value 'first baseline start'] - expected: FAIL - - [Property place-content value 'last baseline'] - expected: FAIL - - [Property place-content value 'first baseline stretch'] - expected: FAIL - - [Property place-content value 'last baseline flex-start'] - expected: FAIL - - [Property place-content value 'baseline stretch'] - expected: FAIL - - [Property place-content value 'space-between'] - expected: FAIL - - [Property place-content value 'space-around'] - expected: FAIL - - [Property place-content value 'space-evenly'] - expected: FAIL - - [Property place-content value 'stretch'] - expected: FAIL - - [Property place-content value 'center'] - expected: FAIL - - [Property place-content value 'end'] - expected: FAIL - - [Property place-content value 'flex-start flex-start'] - expected: FAIL - - [Property place-content value 'unsafe end unsafe end'] - expected: FAIL - - [Property place-content value 'safe flex-start'] - expected: FAIL - - [Property place-content value 'normal stretch'] - expected: FAIL - - [Property place-content value 'baseline space-around'] - expected: FAIL - - [Property place-content value 'space-evenly unsafe end'] - expected: FAIL - - [Property place-content value 'center normal'] - expected: FAIL - - [Property place-content value 'normal right'] - expected: FAIL - - [Property place-content value 'baseline unsafe left'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/place-content-shorthand.html.ini b/tests/wpt/meta/css/css-align/parsing/place-content-shorthand.html.ini deleted file mode 100644 index 9988ede34a1..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/place-content-shorthand.html.ini +++ /dev/null @@ -1,45 +0,0 @@ -[place-content-shorthand.html] - [e.style['place-content'\] = "normal" should set align-content] - expected: FAIL - - [e.style['place-content'\] = "normal" should set justify-content] - expected: FAIL - - [e.style['place-content'\] = "normal" should not set unrelated longhands] - expected: FAIL - - [e.style['place-content'\] = "first baseline" should set align-content] - expected: FAIL - - [e.style['place-content'\] = "first baseline" should set justify-content] - expected: FAIL - - [e.style['place-content'\] = "first baseline" should not set unrelated longhands] - expected: FAIL - - [e.style['place-content'\] = "last baseline flex-start" should set align-content] - expected: FAIL - - [e.style['place-content'\] = "last baseline flex-start" should set justify-content] - expected: FAIL - - [e.style['place-content'\] = "last baseline flex-start" should not set unrelated longhands] - expected: FAIL - - [e.style['place-content'\] = "space-around" should set align-content] - expected: FAIL - - [e.style['place-content'\] = "space-around" should set justify-content] - expected: FAIL - - [e.style['place-content'\] = "space-around" should not set unrelated longhands] - expected: FAIL - - [e.style['place-content'\] = "space-evenly unsafe end" should set align-content] - expected: FAIL - - [e.style['place-content'\] = "space-evenly unsafe end" should set justify-content] - expected: FAIL - - [e.style['place-content'\] = "space-evenly unsafe end" should not set unrelated longhands] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/place-content-valid.html.ini b/tests/wpt/meta/css/css-align/parsing/place-content-valid.html.ini deleted file mode 100644 index b89378f8b76..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/place-content-valid.html.ini +++ /dev/null @@ -1,69 +0,0 @@ -[place-content-valid.html] - [e.style['place-content'\] = "normal normal" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "first baseline" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "baseline" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "first baseline start" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "last baseline" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "first baseline stretch" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "last baseline flex-start" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "baseline stretch" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "space-between" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "space-around" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "space-evenly" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "stretch" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "center" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "end" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "flex-start flex-start" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "unsafe end unsafe end" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "safe flex-start" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "normal stretch" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "baseline space-around" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "space-evenly unsafe end" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "center normal" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "normal right" should set the property value] - expected: FAIL - - [e.style['place-content'\] = "baseline unsafe left" should set the property value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/place-items-computed.html.ini b/tests/wpt/meta/css/css-align/parsing/place-items-computed.html.ini index 9625bc12b0d..53a3102e00f 100644 --- a/tests/wpt/meta/css/css-align/parsing/place-items-computed.html.ini +++ b/tests/wpt/meta/css/css-align/parsing/place-items-computed.html.ini @@ -1,54 +1,3 @@ [place-items-computed.html] - [Property place-items value 'normal'] - expected: FAIL - - [Property place-items value 'stretch stretch'] - expected: FAIL - - [Property place-items value 'first baseline'] - expected: FAIL - - [Property place-items value 'last baseline last baseline'] - expected: FAIL - - [Property place-items value 'center'] - expected: FAIL - - [Property place-items value 'end end'] - expected: FAIL - - [Property place-items value 'self-start'] - expected: FAIL - - [Property place-items value 'flex-end'] - expected: FAIL - - [Property place-items value 'unsafe center unsafe center'] - expected: FAIL - - [Property place-items value 'safe self-end'] - expected: FAIL - - [Property place-items value 'stretch baseline'] - expected: FAIL - - [Property place-items value 'last baseline center'] - expected: FAIL - - [Property place-items value 'safe self-end normal'] - expected: FAIL - - [Property place-items value 'normal right'] - expected: FAIL - - [Property place-items value 'baseline unsafe left'] - expected: FAIL - [Property place-items value 'flex-end legacy'] expected: FAIL - - [Property place-items value 'stretch legacy left'] - expected: FAIL - - [Property place-items value 'first baseline right legacy'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/place-items-shorthand.html.ini b/tests/wpt/meta/css/css-align/parsing/place-items-shorthand.html.ini deleted file mode 100644 index 1d5527a28db..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/place-items-shorthand.html.ini +++ /dev/null @@ -1,36 +0,0 @@ -[place-items-shorthand.html] - [e.style['place-items'\] = "normal" should set align-items] - expected: FAIL - - [e.style['place-items'\] = "normal" should set justify-items] - expected: FAIL - - [e.style['place-items'\] = "normal" should not set unrelated longhands] - expected: FAIL - - [e.style['place-items'\] = "first baseline" should set align-items] - expected: FAIL - - [e.style['place-items'\] = "first baseline" should set justify-items] - expected: FAIL - - [e.style['place-items'\] = "first baseline" should not set unrelated longhands] - expected: FAIL - - [e.style['place-items'\] = "last baseline flex-start" should set align-items] - expected: FAIL - - [e.style['place-items'\] = "last baseline flex-start" should set justify-items] - expected: FAIL - - [e.style['place-items'\] = "last baseline flex-start" should not set unrelated longhands] - expected: FAIL - - [e.style['place-items'\] = "stretch right legacy" should set align-items] - expected: FAIL - - [e.style['place-items'\] = "stretch right legacy" should set justify-items] - expected: FAIL - - [e.style['place-items'\] = "stretch right legacy" should not set unrelated longhands] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/place-items-valid.html.ini b/tests/wpt/meta/css/css-align/parsing/place-items-valid.html.ini deleted file mode 100644 index 5882f596642..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/place-items-valid.html.ini +++ /dev/null @@ -1,54 +0,0 @@ -[place-items-valid.html] - [e.style['place-items'\] = "normal" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "stretch stretch" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "first baseline" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "last baseline last baseline" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "center" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "end end" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "self-start" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "flex-end" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "unsafe center unsafe center" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "safe self-end" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "stretch baseline" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "last baseline center" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "safe self-end normal" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "normal right" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "baseline unsafe left" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "flex-end legacy" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "stretch legacy left" should set the property value] - expected: FAIL - - [e.style['place-items'\] = "first baseline right legacy" should set the property value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/place-self-computed.html.ini b/tests/wpt/meta/css/css-align/parsing/place-self-computed.html.ini deleted file mode 100644 index 5536166ff11..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/place-self-computed.html.ini +++ /dev/null @@ -1,48 +0,0 @@ -[place-self-computed.html] - [Property place-self value 'auto auto'] - expected: FAIL - - [Property place-self value 'normal'] - expected: FAIL - - [Property place-self value 'stretch'] - expected: FAIL - - [Property place-self value 'first baseline'] - expected: FAIL - - [Property place-self value 'last baseline last baseline'] - expected: FAIL - - [Property place-self value 'center center'] - expected: FAIL - - [Property place-self value 'start'] - expected: FAIL - - [Property place-self value 'self-start'] - expected: FAIL - - [Property place-self value 'flex-end'] - expected: FAIL - - [Property place-self value 'unsafe center'] - expected: FAIL - - [Property place-self value 'safe self-end safe self-end'] - expected: FAIL - - [Property place-self value 'auto last baseline'] - expected: FAIL - - [Property place-self value 'baseline flex-end'] - expected: FAIL - - [Property place-self value 'unsafe center stretch'] - expected: FAIL - - [Property place-self value 'normal right'] - expected: FAIL - - [Property place-self value 'baseline unsafe left'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/place-self-shorthand.html.ini b/tests/wpt/meta/css/css-align/parsing/place-self-shorthand.html.ini deleted file mode 100644 index 2b0bea16928..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/place-self-shorthand.html.ini +++ /dev/null @@ -1,36 +0,0 @@ -[place-self-shorthand.html] - [e.style['place-self'\] = "normal" should set align-self] - expected: FAIL - - [e.style['place-self'\] = "normal" should set justify-self] - expected: FAIL - - [e.style['place-self'\] = "normal" should not set unrelated longhands] - expected: FAIL - - [e.style['place-self'\] = "first baseline" should set align-self] - expected: FAIL - - [e.style['place-self'\] = "first baseline" should set justify-self] - expected: FAIL - - [e.style['place-self'\] = "first baseline" should not set unrelated longhands] - expected: FAIL - - [e.style['place-self'\] = "last baseline flex-start" should set align-self] - expected: FAIL - - [e.style['place-self'\] = "last baseline flex-start" should set justify-self] - expected: FAIL - - [e.style['place-self'\] = "last baseline flex-start" should not set unrelated longhands] - expected: FAIL - - [e.style['place-self'\] = "unsafe self-start stretch" should set align-self] - expected: FAIL - - [e.style['place-self'\] = "unsafe self-start stretch" should set justify-self] - expected: FAIL - - [e.style['place-self'\] = "unsafe self-start stretch" should not set unrelated longhands] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/parsing/place-self-valid.html.ini b/tests/wpt/meta/css/css-align/parsing/place-self-valid.html.ini deleted file mode 100644 index 244ad6c3338..00000000000 --- a/tests/wpt/meta/css/css-align/parsing/place-self-valid.html.ini +++ /dev/null @@ -1,48 +0,0 @@ -[place-self-valid.html] - [e.style['place-self'\] = "auto auto" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "normal" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "stretch" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "first baseline" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "last baseline last baseline" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "center center" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "start" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "self-start" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "flex-end" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "unsafe center" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "safe self-end safe self-end" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "auto last baseline" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "baseline flex-end" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "unsafe center stretch" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "normal right" should set the property value] - expected: FAIL - - [e.style['place-self'\] = "baseline unsafe left" should set the property value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-001.html.ini b/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-001.html.ini deleted file mode 100644 index 4778199c2ca..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-001.html.ini +++ /dev/null @@ -1,54 +0,0 @@ -[parse-align-self-001.html] - [Checking align-self: auto] - expected: FAIL - - [Checking align-self: normal] - expected: FAIL - - [Checking align-self: stretch] - expected: FAIL - - [Checking align-self: start] - expected: FAIL - - [Checking align-self: end] - expected: FAIL - - [Checking align-self: self-start] - expected: FAIL - - [Checking align-self: self-end] - expected: FAIL - - [Checking align-self: center] - expected: FAIL - - [Checking align-self: flex-start] - expected: FAIL - - [Checking align-self: flex-end] - expected: FAIL - - [Checking align-self: baseline] - expected: FAIL - - [Checking align-self: first baseline] - expected: FAIL - - [Checking align-self: last baseline] - expected: FAIL - - [Checking align-self: safe flex-end] - expected: FAIL - - [Checking align-self: unsafe end] - expected: FAIL - - [Checking align-self: safe end] - expected: FAIL - - [Checking align-self: unsafe flex-start] - expected: FAIL - - [Checking align-self: safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-002.html.ini b/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-002.html.ini deleted file mode 100644 index ecae8b7de2a..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-002.html.ini +++ /dev/null @@ -1,21 +0,0 @@ -[parse-align-self-002.html] - [Test 'initial' value when nothing is specified] - expected: FAIL - - [Test align-self: 'initial'] - expected: FAIL - - [Test grid items align-self: 'initial'] - expected: FAIL - - [Test flex items align-self: 'initial'] - expected: FAIL - - [Test absolute positioned elements align-self: 'initial'] - expected: FAIL - - [Test absolute positioned grid items align-self: 'initial'] - expected: FAIL - - [Test absolute positioned flex items align-self: 'initial'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-003.html.ini b/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-003.html.ini deleted file mode 100644 index fcf2d516058..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-003.html.ini +++ /dev/null @@ -1,54 +0,0 @@ -[parse-align-self-003.html] - [Checking align-self: auto] - expected: FAIL - - [Checking align-self: normal] - expected: FAIL - - [Checking align-self: stretch] - expected: FAIL - - [Checking align-self: start] - expected: FAIL - - [Checking align-self: end] - expected: FAIL - - [Checking align-self: self-start] - expected: FAIL - - [Checking align-self: self-end] - expected: FAIL - - [Checking align-self: center] - expected: FAIL - - [Checking align-self: flex-start] - expected: FAIL - - [Checking align-self: flex-end] - expected: FAIL - - [Checking align-self: baseline] - expected: FAIL - - [Checking align-self: first baseline] - expected: FAIL - - [Checking align-self: last baseline] - expected: FAIL - - [Checking align-self: safe flex-end] - expected: FAIL - - [Checking align-self: unsafe end] - expected: FAIL - - [Checking align-self: safe end] - expected: FAIL - - [Checking align-self: unsafe flex-start] - expected: FAIL - - [Checking align-self: safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-004.html.ini b/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-004.html.ini deleted file mode 100644 index 07b89d6ab44..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-004.html.ini +++ /dev/null @@ -1,84 +0,0 @@ -[parse-align-self-004.html] - [Checking invalid combination - align-self: legacy] - expected: FAIL - - [Checking invalid combination - align-self: space-around] - expected: FAIL - - [Checking invalid combination - align-self: left] - expected: FAIL - - [Checking invalid combination - align-self: safe right] - expected: FAIL - - [Checking invalid combination - align-self: auto safe] - expected: FAIL - - [Checking invalid combination - align-self: auto left] - expected: FAIL - - [Checking invalid combination - align-self: normal unsafe] - expected: FAIL - - [Checking invalid combination - align-self: normal stretch] - expected: FAIL - - [Checking invalid combination - align-self: baseline normal] - expected: FAIL - - [Checking invalid combination - align-self: baseline center] - expected: FAIL - - [Checking invalid combination - align-self: first baseline center] - expected: FAIL - - [Checking invalid combination - align-self: last baseline center] - expected: FAIL - - [Checking invalid combination - align-self: baseline last] - expected: FAIL - - [Checking invalid combination - align-self: baseline first] - expected: FAIL - - [Checking invalid combination - align-self: stretch unsafe] - expected: FAIL - - [Checking invalid combination - align-self: stretch right] - expected: FAIL - - [Checking invalid combination - align-self: unsafe unsafe] - expected: FAIL - - [Checking invalid combination - align-self: unsafe safe] - expected: FAIL - - [Checking invalid combination - align-self: center start] - expected: FAIL - - [Checking invalid combination - align-self: unsafe stretch] - expected: FAIL - - [Checking invalid combination - align-self: safe stretch] - expected: FAIL - - [Checking invalid combination - align-self: baseline safe] - expected: FAIL - - [Checking invalid combination - align-self: unsafe baseline] - expected: FAIL - - [Checking invalid combination - align-self: unsafe safe left] - expected: FAIL - - [Checking invalid combination - align-self: unsafe left safe] - expected: FAIL - - [Checking invalid combination - align-self: left safe unsafe safe] - expected: FAIL - - [Checking invalid combination - align-self: start safe] - expected: FAIL - - [Checking invalid combination - align-self: safe] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-005.html.ini b/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-005.html.ini deleted file mode 100644 index cd503a304e3..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/parse-align-self-005.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[parse-align-self-005.html] - [Test the value 'inherit' overrides current value ('end')] - expected: FAIL - - [Test the value 'inherit' overrides current value ('safe start')] - expected: FAIL - - [Test the value 'inherit' overrides current value ('unsafe center')] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-001.html.ini b/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-001.html.ini deleted file mode 100644 index db1ccc36595..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-001.html.ini +++ /dev/null @@ -1,60 +0,0 @@ -[parse-justify-self-001.html] - [Checking justify-self: auto] - expected: FAIL - - [Checking justify-self: normal] - expected: FAIL - - [Checking justify-self: stretch] - expected: FAIL - - [Checking justify-self: left] - expected: FAIL - - [Checking justify-self: right] - expected: FAIL - - [Checking justify-self: start] - expected: FAIL - - [Checking justify-self: end] - expected: FAIL - - [Checking justify-self: self-start] - expected: FAIL - - [Checking justify-self: self-end] - expected: FAIL - - [Checking justify-self: center] - expected: FAIL - - [Checking justify-self: flex-start] - expected: FAIL - - [Checking justify-self: flex-end] - expected: FAIL - - [Checking justify-self: baseline] - expected: FAIL - - [Checking justify-self: first baseline] - expected: FAIL - - [Checking justify-self: last baseline] - expected: FAIL - - [Checking justify-self: safe flex-end] - expected: FAIL - - [Checking justify-self: unsafe end] - expected: FAIL - - [Checking justify-self: safe end] - expected: FAIL - - [Checking justify-self: unsafe flex-start] - expected: FAIL - - [Checking justify-self: safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-002.html.ini b/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-002.html.ini deleted file mode 100644 index 101c0d18545..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-002.html.ini +++ /dev/null @@ -1,21 +0,0 @@ -[parse-justify-self-002.html] - [Test 'initial' value when nothing is specified] - expected: FAIL - - [Test justify-self: 'initial'] - expected: FAIL - - [Test grid items justify-self: 'initial'] - expected: FAIL - - [Test flex items justify-self: 'initial'] - expected: FAIL - - [Test absolute positioned elements justify-self: 'initial'] - expected: FAIL - - [Test absolute positioned grid items justify-self: 'initial'] - expected: FAIL - - [Test absolute positioned flex items justify-self: 'initial'] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-003.html.ini b/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-003.html.ini deleted file mode 100644 index 80a84f3e366..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-003.html.ini +++ /dev/null @@ -1,60 +0,0 @@ -[parse-justify-self-003.html] - [Checking justify-self: auto] - expected: FAIL - - [Checking justify-self: normal] - expected: FAIL - - [Checking justify-self: stretch] - expected: FAIL - - [Checking justify-self: left] - expected: FAIL - - [Checking justify-self: right] - expected: FAIL - - [Checking justify-self: start] - expected: FAIL - - [Checking justify-self: end] - expected: FAIL - - [Checking justify-self: self-start] - expected: FAIL - - [Checking justify-self: self-end] - expected: FAIL - - [Checking justify-self: center] - expected: FAIL - - [Checking justify-self: flex-start] - expected: FAIL - - [Checking justify-self: flex-end] - expected: FAIL - - [Checking justify-self: baseline] - expected: FAIL - - [Checking justify-self: first baseline] - expected: FAIL - - [Checking justify-self: last baseline] - expected: FAIL - - [Checking justify-self: safe flex-end] - expected: FAIL - - [Checking justify-self: unsafe end] - expected: FAIL - - [Checking justify-self: safe end] - expected: FAIL - - [Checking justify-self: unsafe flex-start] - expected: FAIL - - [Checking justify-self: safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-004.html.ini b/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-004.html.ini deleted file mode 100644 index 49c9a449f56..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-004.html.ini +++ /dev/null @@ -1,78 +0,0 @@ -[parse-justify-self-004.html] - [Checking invalid combination - justify-self: legacy] - expected: FAIL - - [Checking invalid combination - justify-self: space-around] - expected: FAIL - - [Checking invalid combination - justify-self: auto safe] - expected: FAIL - - [Checking invalid combination - justify-self: auto left] - expected: FAIL - - [Checking invalid combination - justify-self: normal unsafe] - expected: FAIL - - [Checking invalid combination - justify-self: normal stretch] - expected: FAIL - - [Checking invalid combination - justify-self: baseline normal] - expected: FAIL - - [Checking invalid combination - justify-self: baseline center] - expected: FAIL - - [Checking invalid combination - justify-self: first baseline center] - expected: FAIL - - [Checking invalid combination - justify-self: last baseline center] - expected: FAIL - - [Checking invalid combination - justify-self: baseline last] - expected: FAIL - - [Checking invalid combination - justify-self: baseline first] - expected: FAIL - - [Checking invalid combination - justify-self: stretch unsafe] - expected: FAIL - - [Checking invalid combination - justify-self: stretch right] - expected: FAIL - - [Checking invalid combination - justify-self: unsafe unsafe] - expected: FAIL - - [Checking invalid combination - justify-self: unsafe safe] - expected: FAIL - - [Checking invalid combination - justify-self: center start] - expected: FAIL - - [Checking invalid combination - justify-self: unsafe stretch] - expected: FAIL - - [Checking invalid combination - justify-self: safe stretch] - expected: FAIL - - [Checking invalid combination - justify-self: baseline safe] - expected: FAIL - - [Checking invalid combination - justify-self: unsafe baseline] - expected: FAIL - - [Checking invalid combination - justify-self: unsafe safe left] - expected: FAIL - - [Checking invalid combination - justify-self: unsafe left safe] - expected: FAIL - - [Checking invalid combination - justify-self: left safe unsafe safe] - expected: FAIL - - [Checking invalid combination - justify-self: start safe] - expected: FAIL - - [Checking invalid combination - justify-self: safe] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-005.html.ini b/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-005.html.ini deleted file mode 100644 index b69e9407842..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/parse-justify-self-005.html.ini +++ /dev/null @@ -1,9 +0,0 @@ -[parse-justify-self-005.html] - [Test the value 'inherit' overrides current value ('end')] - expected: FAIL - - [Test the value 'inherit' overrides current value ('safe left')] - expected: FAIL - - [Test the value 'inherit' overrides current value ('unsafe center')] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-001.html.ini b/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-001.html.ini deleted file mode 100644 index ec5dfa2e311..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-001.html.ini +++ /dev/null @@ -1,54 +0,0 @@ -[place-self-shorthand-001.html] - [Checking place-self: auto] - expected: FAIL - - [Checking place-self: normal] - expected: FAIL - - [Checking place-self: stretch] - expected: FAIL - - [Checking place-self: start] - expected: FAIL - - [Checking place-self: end] - expected: FAIL - - [Checking place-self: self-start] - expected: FAIL - - [Checking place-self: self-end] - expected: FAIL - - [Checking place-self: center] - expected: FAIL - - [Checking place-self: flex-start] - expected: FAIL - - [Checking place-self: flex-end] - expected: FAIL - - [Checking place-self: baseline] - expected: FAIL - - [Checking place-self: first baseline] - expected: FAIL - - [Checking place-self: last baseline] - expected: FAIL - - [Checking place-self: safe flex-end] - expected: FAIL - - [Checking place-self: unsafe end] - expected: FAIL - - [Checking place-self: safe end] - expected: FAIL - - [Checking place-self: unsafe flex-start] - expected: FAIL - - [Checking place-self: safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-002.html.ini b/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-002.html.ini deleted file mode 100644 index 419c2ff3d17..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-002.html.ini +++ /dev/null @@ -1,1080 +0,0 @@ -[place-self-shorthand-002.html] - [Checking place-self: auto left] - expected: FAIL - - [Checking place-self: auto right] - expected: FAIL - - [Checking place-self: auto auto] - expected: FAIL - - [Checking place-self: auto normal] - expected: FAIL - - [Checking place-self: auto stretch] - expected: FAIL - - [Checking place-self: auto start] - expected: FAIL - - [Checking place-self: auto end] - expected: FAIL - - [Checking place-self: auto self-start] - expected: FAIL - - [Checking place-self: auto self-end] - expected: FAIL - - [Checking place-self: auto center] - expected: FAIL - - [Checking place-self: auto flex-start] - expected: FAIL - - [Checking place-self: auto flex-end] - expected: FAIL - - [Checking place-self: auto baseline] - expected: FAIL - - [Checking place-self: auto first baseline] - expected: FAIL - - [Checking place-self: auto last baseline] - expected: FAIL - - [Checking place-self: auto safe flex-end] - expected: FAIL - - [Checking place-self: auto unsafe end] - expected: FAIL - - [Checking place-self: auto safe end] - expected: FAIL - - [Checking place-self: auto unsafe flex-start] - expected: FAIL - - [Checking place-self: auto safe center] - expected: FAIL - - [Checking place-self: normal left] - expected: FAIL - - [Checking place-self: normal right] - expected: FAIL - - [Checking place-self: normal auto] - expected: FAIL - - [Checking place-self: normal normal] - expected: FAIL - - [Checking place-self: normal stretch] - expected: FAIL - - [Checking place-self: normal start] - expected: FAIL - - [Checking place-self: normal end] - expected: FAIL - - [Checking place-self: normal self-start] - expected: FAIL - - [Checking place-self: normal self-end] - expected: FAIL - - [Checking place-self: normal center] - expected: FAIL - - [Checking place-self: normal flex-start] - expected: FAIL - - [Checking place-self: normal flex-end] - expected: FAIL - - [Checking place-self: normal baseline] - expected: FAIL - - [Checking place-self: normal first baseline] - expected: FAIL - - [Checking place-self: normal last baseline] - expected: FAIL - - [Checking place-self: normal safe flex-end] - expected: FAIL - - [Checking place-self: normal unsafe end] - expected: FAIL - - [Checking place-self: normal safe end] - expected: FAIL - - [Checking place-self: normal unsafe flex-start] - expected: FAIL - - [Checking place-self: normal safe center] - expected: FAIL - - [Checking place-self: stretch left] - expected: FAIL - - [Checking place-self: stretch right] - expected: FAIL - - [Checking place-self: stretch auto] - expected: FAIL - - [Checking place-self: stretch normal] - expected: FAIL - - [Checking place-self: stretch stretch] - expected: FAIL - - [Checking place-self: stretch start] - expected: FAIL - - [Checking place-self: stretch end] - expected: FAIL - - [Checking place-self: stretch self-start] - expected: FAIL - - [Checking place-self: stretch self-end] - expected: FAIL - - [Checking place-self: stretch center] - expected: FAIL - - [Checking place-self: stretch flex-start] - expected: FAIL - - [Checking place-self: stretch flex-end] - expected: FAIL - - [Checking place-self: stretch baseline] - expected: FAIL - - [Checking place-self: stretch first baseline] - expected: FAIL - - [Checking place-self: stretch last baseline] - expected: FAIL - - [Checking place-self: stretch safe flex-end] - expected: FAIL - - [Checking place-self: stretch unsafe end] - expected: FAIL - - [Checking place-self: stretch safe end] - expected: FAIL - - [Checking place-self: stretch unsafe flex-start] - expected: FAIL - - [Checking place-self: stretch safe center] - expected: FAIL - - [Checking place-self: start left] - expected: FAIL - - [Checking place-self: start right] - expected: FAIL - - [Checking place-self: start auto] - expected: FAIL - - [Checking place-self: start normal] - expected: FAIL - - [Checking place-self: start stretch] - expected: FAIL - - [Checking place-self: start start] - expected: FAIL - - [Checking place-self: start end] - expected: FAIL - - [Checking place-self: start self-start] - expected: FAIL - - [Checking place-self: start self-end] - expected: FAIL - - [Checking place-self: start center] - expected: FAIL - - [Checking place-self: start flex-start] - expected: FAIL - - [Checking place-self: start flex-end] - expected: FAIL - - [Checking place-self: start baseline] - expected: FAIL - - [Checking place-self: start first baseline] - expected: FAIL - - [Checking place-self: start last baseline] - expected: FAIL - - [Checking place-self: start safe flex-end] - expected: FAIL - - [Checking place-self: start unsafe end] - expected: FAIL - - [Checking place-self: start safe end] - expected: FAIL - - [Checking place-self: start unsafe flex-start] - expected: FAIL - - [Checking place-self: start safe center] - expected: FAIL - - [Checking place-self: end left] - expected: FAIL - - [Checking place-self: end right] - expected: FAIL - - [Checking place-self: end auto] - expected: FAIL - - [Checking place-self: end normal] - expected: FAIL - - [Checking place-self: end stretch] - expected: FAIL - - [Checking place-self: end start] - expected: FAIL - - [Checking place-self: end end] - expected: FAIL - - [Checking place-self: end self-start] - expected: FAIL - - [Checking place-self: end self-end] - expected: FAIL - - [Checking place-self: end center] - expected: FAIL - - [Checking place-self: end flex-start] - expected: FAIL - - [Checking place-self: end flex-end] - expected: FAIL - - [Checking place-self: end baseline] - expected: FAIL - - [Checking place-self: end first baseline] - expected: FAIL - - [Checking place-self: end last baseline] - expected: FAIL - - [Checking place-self: end safe flex-end] - expected: FAIL - - [Checking place-self: end unsafe end] - expected: FAIL - - [Checking place-self: end safe end] - expected: FAIL - - [Checking place-self: end unsafe flex-start] - expected: FAIL - - [Checking place-self: end safe center] - expected: FAIL - - [Checking place-self: self-start left] - expected: FAIL - - [Checking place-self: self-start right] - expected: FAIL - - [Checking place-self: self-start auto] - expected: FAIL - - [Checking place-self: self-start normal] - expected: FAIL - - [Checking place-self: self-start stretch] - expected: FAIL - - [Checking place-self: self-start start] - expected: FAIL - - [Checking place-self: self-start end] - expected: FAIL - - [Checking place-self: self-start self-start] - expected: FAIL - - [Checking place-self: self-start self-end] - expected: FAIL - - [Checking place-self: self-start center] - expected: FAIL - - [Checking place-self: self-start flex-start] - expected: FAIL - - [Checking place-self: self-start flex-end] - expected: FAIL - - [Checking place-self: self-start baseline] - expected: FAIL - - [Checking place-self: self-start first baseline] - expected: FAIL - - [Checking place-self: self-start last baseline] - expected: FAIL - - [Checking place-self: self-start safe flex-end] - expected: FAIL - - [Checking place-self: self-start unsafe end] - expected: FAIL - - [Checking place-self: self-start safe end] - expected: FAIL - - [Checking place-self: self-start unsafe flex-start] - expected: FAIL - - [Checking place-self: self-start safe center] - expected: FAIL - - [Checking place-self: self-end left] - expected: FAIL - - [Checking place-self: self-end right] - expected: FAIL - - [Checking place-self: self-end auto] - expected: FAIL - - [Checking place-self: self-end normal] - expected: FAIL - - [Checking place-self: self-end stretch] - expected: FAIL - - [Checking place-self: self-end start] - expected: FAIL - - [Checking place-self: self-end end] - expected: FAIL - - [Checking place-self: self-end self-start] - expected: FAIL - - [Checking place-self: self-end self-end] - expected: FAIL - - [Checking place-self: self-end center] - expected: FAIL - - [Checking place-self: self-end flex-start] - expected: FAIL - - [Checking place-self: self-end flex-end] - expected: FAIL - - [Checking place-self: self-end baseline] - expected: FAIL - - [Checking place-self: self-end first baseline] - expected: FAIL - - [Checking place-self: self-end last baseline] - expected: FAIL - - [Checking place-self: self-end safe flex-end] - expected: FAIL - - [Checking place-self: self-end unsafe end] - expected: FAIL - - [Checking place-self: self-end safe end] - expected: FAIL - - [Checking place-self: self-end unsafe flex-start] - expected: FAIL - - [Checking place-self: self-end safe center] - expected: FAIL - - [Checking place-self: center left] - expected: FAIL - - [Checking place-self: center right] - expected: FAIL - - [Checking place-self: center auto] - expected: FAIL - - [Checking place-self: center normal] - expected: FAIL - - [Checking place-self: center stretch] - expected: FAIL - - [Checking place-self: center start] - expected: FAIL - - [Checking place-self: center end] - expected: FAIL - - [Checking place-self: center self-start] - expected: FAIL - - [Checking place-self: center self-end] - expected: FAIL - - [Checking place-self: center center] - expected: FAIL - - [Checking place-self: center flex-start] - expected: FAIL - - [Checking place-self: center flex-end] - expected: FAIL - - [Checking place-self: center baseline] - expected: FAIL - - [Checking place-self: center first baseline] - expected: FAIL - - [Checking place-self: center last baseline] - expected: FAIL - - [Checking place-self: center safe flex-end] - expected: FAIL - - [Checking place-self: center unsafe end] - expected: FAIL - - [Checking place-self: center safe end] - expected: FAIL - - [Checking place-self: center unsafe flex-start] - expected: FAIL - - [Checking place-self: center safe center] - expected: FAIL - - [Checking place-self: flex-start left] - expected: FAIL - - [Checking place-self: flex-start right] - expected: FAIL - - [Checking place-self: flex-start auto] - expected: FAIL - - [Checking place-self: flex-start normal] - expected: FAIL - - [Checking place-self: flex-start stretch] - expected: FAIL - - [Checking place-self: flex-start start] - expected: FAIL - - [Checking place-self: flex-start end] - expected: FAIL - - [Checking place-self: flex-start self-start] - expected: FAIL - - [Checking place-self: flex-start self-end] - expected: FAIL - - [Checking place-self: flex-start center] - expected: FAIL - - [Checking place-self: flex-start flex-start] - expected: FAIL - - [Checking place-self: flex-start flex-end] - expected: FAIL - - [Checking place-self: flex-start baseline] - expected: FAIL - - [Checking place-self: flex-start first baseline] - expected: FAIL - - [Checking place-self: flex-start last baseline] - expected: FAIL - - [Checking place-self: flex-start safe flex-end] - expected: FAIL - - [Checking place-self: flex-start unsafe end] - expected: FAIL - - [Checking place-self: flex-start safe end] - expected: FAIL - - [Checking place-self: flex-start unsafe flex-start] - expected: FAIL - - [Checking place-self: flex-start safe center] - expected: FAIL - - [Checking place-self: flex-end left] - expected: FAIL - - [Checking place-self: flex-end right] - expected: FAIL - - [Checking place-self: flex-end auto] - expected: FAIL - - [Checking place-self: flex-end normal] - expected: FAIL - - [Checking place-self: flex-end stretch] - expected: FAIL - - [Checking place-self: flex-end start] - expected: FAIL - - [Checking place-self: flex-end end] - expected: FAIL - - [Checking place-self: flex-end self-start] - expected: FAIL - - [Checking place-self: flex-end self-end] - expected: FAIL - - [Checking place-self: flex-end center] - expected: FAIL - - [Checking place-self: flex-end flex-start] - expected: FAIL - - [Checking place-self: flex-end flex-end] - expected: FAIL - - [Checking place-self: flex-end baseline] - expected: FAIL - - [Checking place-self: flex-end first baseline] - expected: FAIL - - [Checking place-self: flex-end last baseline] - expected: FAIL - - [Checking place-self: flex-end safe flex-end] - expected: FAIL - - [Checking place-self: flex-end unsafe end] - expected: FAIL - - [Checking place-self: flex-end safe end] - expected: FAIL - - [Checking place-self: flex-end unsafe flex-start] - expected: FAIL - - [Checking place-self: flex-end safe center] - expected: FAIL - - [Checking place-self: baseline left] - expected: FAIL - - [Checking place-self: baseline right] - expected: FAIL - - [Checking place-self: baseline auto] - expected: FAIL - - [Checking place-self: baseline normal] - expected: FAIL - - [Checking place-self: baseline stretch] - expected: FAIL - - [Checking place-self: baseline start] - expected: FAIL - - [Checking place-self: baseline end] - expected: FAIL - - [Checking place-self: baseline self-start] - expected: FAIL - - [Checking place-self: baseline self-end] - expected: FAIL - - [Checking place-self: baseline center] - expected: FAIL - - [Checking place-self: baseline flex-start] - expected: FAIL - - [Checking place-self: baseline flex-end] - expected: FAIL - - [Checking place-self: baseline baseline] - expected: FAIL - - [Checking place-self: baseline first baseline] - expected: FAIL - - [Checking place-self: baseline last baseline] - expected: FAIL - - [Checking place-self: baseline safe flex-end] - expected: FAIL - - [Checking place-self: baseline unsafe end] - expected: FAIL - - [Checking place-self: baseline safe end] - expected: FAIL - - [Checking place-self: baseline unsafe flex-start] - expected: FAIL - - [Checking place-self: baseline safe center] - expected: FAIL - - [Checking place-self: first baseline left] - expected: FAIL - - [Checking place-self: first baseline right] - expected: FAIL - - [Checking place-self: first baseline auto] - expected: FAIL - - [Checking place-self: first baseline normal] - expected: FAIL - - [Checking place-self: first baseline stretch] - expected: FAIL - - [Checking place-self: first baseline start] - expected: FAIL - - [Checking place-self: first baseline end] - expected: FAIL - - [Checking place-self: first baseline self-start] - expected: FAIL - - [Checking place-self: first baseline self-end] - expected: FAIL - - [Checking place-self: first baseline center] - expected: FAIL - - [Checking place-self: first baseline flex-start] - expected: FAIL - - [Checking place-self: first baseline flex-end] - expected: FAIL - - [Checking place-self: first baseline baseline] - expected: FAIL - - [Checking place-self: first baseline first baseline] - expected: FAIL - - [Checking place-self: first baseline last baseline] - expected: FAIL - - [Checking place-self: first baseline safe flex-end] - expected: FAIL - - [Checking place-self: first baseline unsafe end] - expected: FAIL - - [Checking place-self: first baseline safe end] - expected: FAIL - - [Checking place-self: first baseline unsafe flex-start] - expected: FAIL - - [Checking place-self: first baseline safe center] - expected: FAIL - - [Checking place-self: last baseline left] - expected: FAIL - - [Checking place-self: last baseline right] - expected: FAIL - - [Checking place-self: last baseline auto] - expected: FAIL - - [Checking place-self: last baseline normal] - expected: FAIL - - [Checking place-self: last baseline stretch] - expected: FAIL - - [Checking place-self: last baseline start] - expected: FAIL - - [Checking place-self: last baseline end] - expected: FAIL - - [Checking place-self: last baseline self-start] - expected: FAIL - - [Checking place-self: last baseline self-end] - expected: FAIL - - [Checking place-self: last baseline center] - expected: FAIL - - [Checking place-self: last baseline flex-start] - expected: FAIL - - [Checking place-self: last baseline flex-end] - expected: FAIL - - [Checking place-self: last baseline baseline] - expected: FAIL - - [Checking place-self: last baseline first baseline] - expected: FAIL - - [Checking place-self: last baseline last baseline] - expected: FAIL - - [Checking place-self: last baseline safe flex-end] - expected: FAIL - - [Checking place-self: last baseline unsafe end] - expected: FAIL - - [Checking place-self: last baseline safe end] - expected: FAIL - - [Checking place-self: last baseline unsafe flex-start] - expected: FAIL - - [Checking place-self: last baseline safe center] - expected: FAIL - - [Checking place-self: safe flex-end left] - expected: FAIL - - [Checking place-self: safe flex-end right] - expected: FAIL - - [Checking place-self: safe flex-end auto] - expected: FAIL - - [Checking place-self: safe flex-end normal] - expected: FAIL - - [Checking place-self: safe flex-end stretch] - expected: FAIL - - [Checking place-self: safe flex-end start] - expected: FAIL - - [Checking place-self: safe flex-end end] - expected: FAIL - - [Checking place-self: safe flex-end self-start] - expected: FAIL - - [Checking place-self: safe flex-end self-end] - expected: FAIL - - [Checking place-self: safe flex-end center] - expected: FAIL - - [Checking place-self: safe flex-end flex-start] - expected: FAIL - - [Checking place-self: safe flex-end flex-end] - expected: FAIL - - [Checking place-self: safe flex-end baseline] - expected: FAIL - - [Checking place-self: safe flex-end first baseline] - expected: FAIL - - [Checking place-self: safe flex-end last baseline] - expected: FAIL - - [Checking place-self: safe flex-end safe flex-end] - expected: FAIL - - [Checking place-self: safe flex-end unsafe end] - expected: FAIL - - [Checking place-self: safe flex-end safe end] - expected: FAIL - - [Checking place-self: safe flex-end unsafe flex-start] - expected: FAIL - - [Checking place-self: safe flex-end safe center] - expected: FAIL - - [Checking place-self: unsafe end left] - expected: FAIL - - [Checking place-self: unsafe end right] - expected: FAIL - - [Checking place-self: unsafe end auto] - expected: FAIL - - [Checking place-self: unsafe end normal] - expected: FAIL - - [Checking place-self: unsafe end stretch] - expected: FAIL - - [Checking place-self: unsafe end start] - expected: FAIL - - [Checking place-self: unsafe end end] - expected: FAIL - - [Checking place-self: unsafe end self-start] - expected: FAIL - - [Checking place-self: unsafe end self-end] - expected: FAIL - - [Checking place-self: unsafe end center] - expected: FAIL - - [Checking place-self: unsafe end flex-start] - expected: FAIL - - [Checking place-self: unsafe end flex-end] - expected: FAIL - - [Checking place-self: unsafe end baseline] - expected: FAIL - - [Checking place-self: unsafe end first baseline] - expected: FAIL - - [Checking place-self: unsafe end last baseline] - expected: FAIL - - [Checking place-self: unsafe end safe flex-end] - expected: FAIL - - [Checking place-self: unsafe end unsafe end] - expected: FAIL - - [Checking place-self: unsafe end safe end] - expected: FAIL - - [Checking place-self: unsafe end unsafe flex-start] - expected: FAIL - - [Checking place-self: unsafe end safe center] - expected: FAIL - - [Checking place-self: safe end left] - expected: FAIL - - [Checking place-self: safe end right] - expected: FAIL - - [Checking place-self: safe end auto] - expected: FAIL - - [Checking place-self: safe end normal] - expected: FAIL - - [Checking place-self: safe end stretch] - expected: FAIL - - [Checking place-self: safe end start] - expected: FAIL - - [Checking place-self: safe end end] - expected: FAIL - - [Checking place-self: safe end self-start] - expected: FAIL - - [Checking place-self: safe end self-end] - expected: FAIL - - [Checking place-self: safe end center] - expected: FAIL - - [Checking place-self: safe end flex-start] - expected: FAIL - - [Checking place-self: safe end flex-end] - expected: FAIL - - [Checking place-self: safe end baseline] - expected: FAIL - - [Checking place-self: safe end first baseline] - expected: FAIL - - [Checking place-self: safe end last baseline] - expected: FAIL - - [Checking place-self: safe end safe flex-end] - expected: FAIL - - [Checking place-self: safe end unsafe end] - expected: FAIL - - [Checking place-self: safe end safe end] - expected: FAIL - - [Checking place-self: safe end unsafe flex-start] - expected: FAIL - - [Checking place-self: safe end safe center] - expected: FAIL - - [Checking place-self: unsafe flex-start left] - expected: FAIL - - [Checking place-self: unsafe flex-start right] - expected: FAIL - - [Checking place-self: unsafe flex-start auto] - expected: FAIL - - [Checking place-self: unsafe flex-start normal] - expected: FAIL - - [Checking place-self: unsafe flex-start stretch] - expected: FAIL - - [Checking place-self: unsafe flex-start start] - expected: FAIL - - [Checking place-self: unsafe flex-start end] - expected: FAIL - - [Checking place-self: unsafe flex-start self-start] - expected: FAIL - - [Checking place-self: unsafe flex-start self-end] - expected: FAIL - - [Checking place-self: unsafe flex-start center] - expected: FAIL - - [Checking place-self: unsafe flex-start flex-start] - expected: FAIL - - [Checking place-self: unsafe flex-start flex-end] - expected: FAIL - - [Checking place-self: unsafe flex-start baseline] - expected: FAIL - - [Checking place-self: unsafe flex-start first baseline] - expected: FAIL - - [Checking place-self: unsafe flex-start last baseline] - expected: FAIL - - [Checking place-self: unsafe flex-start safe flex-end] - expected: FAIL - - [Checking place-self: unsafe flex-start unsafe end] - expected: FAIL - - [Checking place-self: unsafe flex-start safe end] - expected: FAIL - - [Checking place-self: unsafe flex-start unsafe flex-start] - expected: FAIL - - [Checking place-self: unsafe flex-start safe center] - expected: FAIL - - [Checking place-self: safe center left] - expected: FAIL - - [Checking place-self: safe center right] - expected: FAIL - - [Checking place-self: safe center auto] - expected: FAIL - - [Checking place-self: safe center normal] - expected: FAIL - - [Checking place-self: safe center stretch] - expected: FAIL - - [Checking place-self: safe center start] - expected: FAIL - - [Checking place-self: safe center end] - expected: FAIL - - [Checking place-self: safe center self-start] - expected: FAIL - - [Checking place-self: safe center self-end] - expected: FAIL - - [Checking place-self: safe center center] - expected: FAIL - - [Checking place-self: safe center flex-start] - expected: FAIL - - [Checking place-self: safe center flex-end] - expected: FAIL - - [Checking place-self: safe center baseline] - expected: FAIL - - [Checking place-self: safe center first baseline] - expected: FAIL - - [Checking place-self: safe center last baseline] - expected: FAIL - - [Checking place-self: safe center safe flex-end] - expected: FAIL - - [Checking place-self: safe center unsafe end] - expected: FAIL - - [Checking place-self: safe center safe end] - expected: FAIL - - [Checking place-self: safe center unsafe flex-start] - expected: FAIL - - [Checking place-self: safe center safe center] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-003.html.ini b/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-003.html.ini deleted file mode 100644 index bbf1dd7ce08..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-003.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[place-self-shorthand-003.html] - [Check place-self: initial - align-self expanded value] - expected: FAIL - - [Check place-self: initial - justify-self expanded value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-004.html.ini b/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-004.html.ini deleted file mode 100644 index 03e97bd5514..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-004.html.ini +++ /dev/null @@ -1,12 +0,0 @@ -[place-self-shorthand-004.html] - [Verify fallback values are invalid] - expected: FAIL - - [Verify 'left' and 'right' values are invalid for block/cross axis alignment] - expected: FAIL - - [Verify numeric values are invalid] - expected: FAIL - - [Verify empty declaration is invalid] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-005.html.ini b/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-005.html.ini deleted file mode 100644 index 77e0c43f6b4..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-005.html.ini +++ /dev/null @@ -1,6 +0,0 @@ -[place-self-shorthand-005.html] - [Check place-self: inherit - align-self resolved value] - expected: FAIL - - [Check place-self: inherit - justify-self resolved value] - expected: FAIL diff --git a/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-006.html.ini b/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-006.html.ini deleted file mode 100644 index 718e91c83ec..00000000000 --- a/tests/wpt/meta/css/css-align/self-alignment/place-self-shorthand-006.html.ini +++ /dev/null @@ -1,117 +0,0 @@ -[place-self-shorthand-006.html] - [Checking place-self: auto auto] - expected: FAIL - - [Checking place-self: auto first baseline] - expected: FAIL - - [Checking place-self: normal normal] - expected: FAIL - - [Checking place-self: normal first baseline] - expected: FAIL - - [Checking place-self: stretch stretch] - expected: FAIL - - [Checking place-self: stretch first baseline] - expected: FAIL - - [Checking place-self: start start] - expected: FAIL - - [Checking place-self: start first baseline] - expected: FAIL - - [Checking place-self: end end] - expected: FAIL - - [Checking place-self: end first baseline] - expected: FAIL - - [Checking place-self: self-start self-start] - expected: FAIL - - [Checking place-self: self-start first baseline] - expected: FAIL - - [Checking place-self: self-end self-end] - expected: FAIL - - [Checking place-self: self-end first baseline] - expected: FAIL - - [Checking place-self: center center] - expected: FAIL - - [Checking place-self: center first baseline] - expected: FAIL - - [Checking place-self: flex-start flex-start] - expected: FAIL - - [Checking place-self: flex-start first baseline] - expected: FAIL - - [Checking place-self: flex-end flex-end] - expected: FAIL - - [Checking place-self: flex-end first baseline] - expected: FAIL - - [Checking place-self: baseline baseline] - expected: FAIL - - [Checking place-self: baseline first baseline] - expected: FAIL - - [Checking place-self: first baseline left] - expected: FAIL - - [Checking place-self: first baseline right] - expected: FAIL - - [Checking place-self: first baseline auto] - expected: FAIL - - [Checking place-self: first baseline normal] - expected: FAIL - - [Checking place-self: first baseline stretch] - expected: FAIL - - [Checking place-self: first baseline start] - expected: FAIL - - [Checking place-self: first baseline end] - expected: FAIL - - [Checking place-self: first baseline self-start] - expected: FAIL - - [Checking place-self: first baseline self-end] - expected: FAIL - - [Checking place-self: first baseline center] - expected: FAIL - - [Checking place-self: first baseline flex-start] - expected: FAIL - - [Checking place-self: first baseline flex-end] - expected: FAIL - - [Checking place-self: first baseline baseline] - expected: FAIL - - [Checking place-self: first baseline first baseline] - expected: FAIL - - [Checking place-self: first baseline last baseline] - expected: FAIL - - [Checking place-self: last baseline first baseline] - expected: FAIL - - [Checking place-self: last baseline last baseline] - expected: FAIL diff --git a/tests/wpt/meta/css/css-flexbox/dynamic-stretch-change.html.ini b/tests/wpt/meta/css/css-flexbox/dynamic-stretch-change.html.ini deleted file mode 100644 index 54c0eb2a39e..00000000000 --- a/tests/wpt/meta/css/css-flexbox/dynamic-stretch-change.html.ini +++ /dev/null @@ -1,2 +0,0 @@ -[dynamic-stretch-change.html] - expected: FAIL diff --git a/tests/wpt/meta/css/css-flexbox/getcomputedstyle/flexbox_computedstyle_align-items-invalid.html.ini b/tests/wpt/meta/css/css-flexbox/getcomputedstyle/flexbox_computedstyle_align-items-invalid.html.ini deleted file mode 100644 index d5138d10fee..00000000000 --- a/tests/wpt/meta/css/css-flexbox/getcomputedstyle/flexbox_computedstyle_align-items-invalid.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[flexbox_computedstyle_align-items-invalid.html] - [flexbox | computed style | align-items: invalid] - expected: FAIL - diff --git a/tests/wpt/meta/css/css-flexbox/getcomputedstyle/flexbox_computedstyle_align-self-invalid.html.ini b/tests/wpt/meta/css/css-flexbox/getcomputedstyle/flexbox_computedstyle_align-self-invalid.html.ini deleted file mode 100644 index 956c3ead1ee..00000000000 --- a/tests/wpt/meta/css/css-flexbox/getcomputedstyle/flexbox_computedstyle_align-self-invalid.html.ini +++ /dev/null @@ -1,4 +0,0 @@ -[flexbox_computedstyle_align-self-invalid.html] - [flexbox | computed style | align-self: invalid] - expected: FAIL - diff --git a/tests/wpt/meta/css/css-flexbox/inheritance.html.ini b/tests/wpt/meta/css/css-flexbox/inheritance.html.ini deleted file mode 100644 index 40bc39ab2bd..00000000000 --- a/tests/wpt/meta/css/css-flexbox/inheritance.html.ini +++ /dev/null @@ -1,15 +0,0 @@ -[inheritance.html] - [Property align-self does not inherit] - expected: FAIL - - [Property align-items has initial value normal] - expected: FAIL - - [Property align-content has initial value normal] - expected: FAIL - - [Property justify-content has initial value normal] - expected: FAIL - - [Property align-self has initial value auto] - expected: FAIL