diff --git a/scripts/format-fixtures/Cargo.toml b/scripts/format-fixtures/Cargo.toml index 7ffb2ec5c..625920ca1 100644 --- a/scripts/format-fixtures/Cargo.toml +++ b/scripts/format-fixtures/Cargo.toml @@ -7,3 +7,4 @@ edition = "2021" [dependencies] regex = "1.8.1" +walkdir = "2.3.3" diff --git a/scripts/format-fixtures/src/main.rs b/scripts/format-fixtures/src/main.rs index b7dae1b23..cae6597ea 100644 --- a/scripts/format-fixtures/src/main.rs +++ b/scripts/format-fixtures/src/main.rs @@ -4,6 +4,7 @@ use std::{ }; use regex::{Captures, Regex}; +use walkdir::WalkDir; fn main() { let fixtures_root = std::env::var("FIXTURE_DIR").map(PathBuf::from).unwrap_or_else(|_| { @@ -11,15 +12,14 @@ fn main() { let repo_root = root_dir.parent().and_then(Path::parent).unwrap(); repo_root.join("test_fixtures") }); - let fixtures = fs::read_dir(fixtures_root).unwrap(); println!("reading test fixtures from disk"); - let fixtures: Vec<_> = fixtures + let fixtures: Vec<_> = WalkDir::new(fixtures_root) .into_iter() .filter_map(|a| a.ok()) .filter(|f| f.path().is_file() && f.path().extension().map(|p| p == "html").unwrap_or(false)) .map(|f| { - let fixture_path = f.path(); + let fixture_path = f.path().to_path_buf(); let name = fixture_path.file_stem().unwrap().to_str().unwrap().to_string(); (name, fixture_path) }) diff --git a/scripts/gentest/Cargo.toml b/scripts/gentest/Cargo.toml index f71b9aaa6..65aff1c16 100644 --- a/scripts/gentest/Cargo.toml +++ b/scripts/gentest/Cargo.toml @@ -14,3 +14,4 @@ quote = "1.0.2" serde_json = "1" syn = "2.0.4" tokio = { version = "1.18", features = ["full"] } +walkdir = "2.3.3" diff --git a/scripts/gentest/src/main.rs b/scripts/gentest/src/main.rs index 18c03deac..2d5f66c68 100644 --- a/scripts/gentest/src/main.rs +++ b/scripts/gentest/src/main.rs @@ -1,4 +1,5 @@ -use std::fs; +use std::fs::{self, OpenOptions}; +use std::io::Write; use std::path::{Path, PathBuf}; use std::process::Command; @@ -9,6 +10,7 @@ use proc_macro2::{Span, TokenStream}; use quote::{format_ident, quote}; use serde_json::Value; use syn::Ident; +use walkdir::WalkDir; macro_rules! dim_quoted_renamed { ($obj:ident, $in_name:ident, $out_name:ident, $value_mapper:ident, $default:expr) => { @@ -58,16 +60,15 @@ async fn main() { let repo_root = root_dir.parent().and_then(Path::parent).unwrap(); let fixtures_root = repo_root.join("test_fixtures"); - let fixtures = fs::read_dir(fixtures_root).unwrap(); info!("reading test fixtures from disk"); - let mut fixtures: Vec<_> = fixtures + let mut fixtures: Vec<_> = WalkDir::new(fixtures_root.clone()) .into_iter() .filter_map(|a| a.ok()) .filter(|f| !f.file_name().to_string_lossy().starts_with('x')) // ignore tests beginning with x .filter(|f| f.path().is_file() && f.path().extension().map(|p| p == "html").unwrap_or(false)) .map(|f| { - let fixture_path = f.path(); + let fixture_path = f.path().to_path_buf(); let name = fixture_path.file_stem().unwrap().to_str().unwrap().to_string(); (name, fixture_path) }) @@ -94,8 +95,8 @@ async fn main() { asserts_non_zero_width_scrollbars(client.clone()).await; let mut test_descs = vec![]; - for (name, fixture_path) in fixtures { - test_descs.push(test_root_element(client.clone(), name, fixture_path).await); + for (name, fixture_path) in fixtures.iter() { + test_descs.push(test_root_element(client.clone(), name.clone(), fixture_path).await); } info!("killing webdriver instance..."); @@ -105,41 +106,51 @@ async fn main() { let test_descs: Vec<_> = test_descs .iter() - .map(|(name, description)| { + .map(|(name, fixture_path, description)| { debug!("generating test contents for {}", &name); - (name.clone(), generate_test(name, description)) + (name.clone(), fixture_path, generate_test(name, description)) }) .collect(); - let mod_statemnts = test_descs - .iter() - .map(|(name, _)| { - let name_ident = Ident::new(name, Span::call_site()); - if name.starts_with("grid") { - quote!(#[cfg(feature = "grid")] mod #name_ident;) - } else { - quote!(mod #name_ident;) - } - }) - .fold(quote!(), |a, b| quote!(#a #b)); - let generic_measure_function = generate_generic_measure_function(); - - let test_mod_file = quote!( - #generic_measure_function - #mod_statemnts - ); - info!("writing generated test file to disk..."); let tests_base_path = repo_root.join("tests").join("generated"); fs::remove_dir_all(&tests_base_path).unwrap(); fs::create_dir(&tests_base_path).unwrap(); - for (name, test_body) in test_descs { - let mut test_filename = tests_base_path.join(&name); + + // Open base mod.rs file for appending + let mut base_mod_file = OpenOptions::new().create(true).append(true).open(tests_base_path.join("mod.rs")).unwrap(); + + for (name, fixture_path, test_body) in test_descs { + // Create test directory if it doesn't exist + let test_path_stripped = fixture_path.parent().unwrap().strip_prefix(&fixtures_root).unwrap(); + let test_path = tests_base_path.join(test_path_stripped); + if !test_path.exists() { + fs::create_dir(&test_path).unwrap(); + + let ident = Ident::new(test_path_stripped.to_str().unwrap(), Span::call_site()); + let token = quote!(mod #ident;); + writeln!(&mut base_mod_file, "{}", token).unwrap(); + } + // Open mod file in current folder + let mod_path = test_path.join("mod.rs"); + let mut mod_file = OpenOptions::new().create(true).append(true).open(mod_path).unwrap(); + + let name_ident = Ident::new(&name, Span::call_site()); + let token = if name.starts_with("grid") { + quote!(#[cfg(feature = "grid")] mod #name_ident;) + } else { + quote!(mod #name_ident;) + }; + writeln!(&mut mod_file, "{}", token).unwrap(); + let mut test_filename = test_path.join(&name); test_filename.set_extension("rs"); debug!("writing {} to disk...", &name); fs::write(test_filename, test_body.to_string()).unwrap(); } - fs::write(tests_base_path.join("mod.rs"), test_mod_file.to_string()).unwrap(); + + let generic_measure_function = generate_generic_measure_function(); + let generic_measure_token = quote!(#generic_measure_function); + writeln!(&mut base_mod_file, "{}", generic_measure_token).unwrap(); info!("formatting the source directory"); Command::new("cargo").arg("fmt").current_dir(repo_root).status().unwrap(); @@ -166,7 +177,7 @@ async fn asserts_non_zero_width_scrollbars(client: Client) { } } -async fn test_root_element(client: Client, name: String, fixture_path: impl AsRef) -> (String, Value) { +async fn test_root_element(client: Client, name: String, fixture_path: impl AsRef) -> (String, PathBuf, Value) { let fixture_path = fixture_path.as_ref(); let url = format!("file://{}", fixture_path.display()); @@ -178,7 +189,7 @@ async fn test_root_element(client: Client, name: String, fixture_path: impl AsRe .unwrap(); let description_string = description.as_str().unwrap(); let description = serde_json::from_str(description_string).unwrap(); - (name, description) + (name.to_string(), fixture_path.to_path_buf(), description) } fn generate_test(name: impl AsRef, description: &Value) -> TokenStream { @@ -937,8 +948,8 @@ fn generate_generic_measure_function() -> TokenStream { fn generate_measure_function(text_content: &str, writing_mode: Option<&str>, aspect_ratio: Option) -> TokenStream { let writing_mode_token = match writing_mode { - Some("vertical-rl" | "vertical-lr") => quote!(super::WritingMode::Vertical), - _ => quote!(super::WritingMode::Horizontal), + Some("vertical-rl" | "vertical-lr") => quote!(crate::generated::WritingMode::Vertical), + _ => quote!(crate::generated::WritingMode::Horizontal), }; let aspect_ratio_token = match aspect_ratio { @@ -949,7 +960,7 @@ fn generate_measure_function(text_content: &str, writing_mode: Option<&str>, asp quote!( taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT : &str = #text_content; - super::measure_standard_text(known_dimensions, available_space, TEXT, #writing_mode_token, #aspect_ratio_token) + crate::generated::measure_standard_text(known_dimensions, available_space, TEXT, #writing_mode_token, #aspect_ratio_token) }) ) } diff --git a/scripts/import-yoga-tests/Cargo.toml b/scripts/import-yoga-tests/Cargo.toml index eb0a19dd1..6cc5abc9e 100644 --- a/scripts/import-yoga-tests/Cargo.toml +++ b/scripts/import-yoga-tests/Cargo.toml @@ -3,3 +3,6 @@ name = "import-yoga-test" version = "0.1.0" authors = ["Nico Burns"] edition = "2021" + +[dependencies] +walkdir = "2.3.3" diff --git a/scripts/import-yoga-tests/src/main.rs b/scripts/import-yoga-tests/src/main.rs index be481a840..040f4ebc2 100644 --- a/scripts/import-yoga-tests/src/main.rs +++ b/scripts/import-yoga-tests/src/main.rs @@ -1,6 +1,7 @@ use std::collections::HashSet; use std::fs; use std::path::{Path, PathBuf}; +use walkdir::WalkDir; struct YogaFixture { #[allow(dead_code)] @@ -16,8 +17,8 @@ fn main() { let taffy_fixtures_dir = taffy_repo_root.join("test_fixtures"); // Get Taffy fixture names - let taffy_fixture_names = fs::read_dir(&taffy_fixtures_dir) - .unwrap() + let taffy_fixture_names = WalkDir::new(&taffy_fixtures_dir) + .into_iter() .filter_map(|a| a.ok()) .map(|f| { let file_name = f.file_name(); diff --git a/test_fixtures/absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.html b/test_fixtures/absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.html deleted file mode 100644 index c6122e8a6..000000000 --- a/test_fixtures/absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_aspect_ratio_fill_height.html b/test_fixtures/absolute_aspect_ratio_fill_height.html deleted file mode 100644 index 21fa6aebe..000000000 --- a/test_fixtures/absolute_aspect_ratio_fill_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_aspect_ratio_fill_height_from_inset.html b/test_fixtures/absolute_aspect_ratio_fill_height_from_inset.html deleted file mode 100644 index 58ecd496e..000000000 --- a/test_fixtures/absolute_aspect_ratio_fill_height_from_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_aspect_ratio_fill_max_height.html b/test_fixtures/absolute_aspect_ratio_fill_max_height.html deleted file mode 100644 index 14b4d5fef..000000000 --- a/test_fixtures/absolute_aspect_ratio_fill_max_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_aspect_ratio_fill_max_width.html b/test_fixtures/absolute_aspect_ratio_fill_max_width.html deleted file mode 100644 index 80e7d9abb..000000000 --- a/test_fixtures/absolute_aspect_ratio_fill_max_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_aspect_ratio_fill_min_height.html b/test_fixtures/absolute_aspect_ratio_fill_min_height.html deleted file mode 100644 index 79b236365..000000000 --- a/test_fixtures/absolute_aspect_ratio_fill_min_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_aspect_ratio_fill_min_width.html b/test_fixtures/absolute_aspect_ratio_fill_min_width.html deleted file mode 100644 index 03dbc6482..000000000 --- a/test_fixtures/absolute_aspect_ratio_fill_min_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_aspect_ratio_fill_width.html b/test_fixtures/absolute_aspect_ratio_fill_width.html deleted file mode 100644 index ef9878a84..000000000 --- a/test_fixtures/absolute_aspect_ratio_fill_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_aspect_ratio_fill_width_from_inset.html b/test_fixtures/absolute_aspect_ratio_fill_width_from_inset.html deleted file mode 100644 index 1e24542a9..000000000 --- a/test_fixtures/absolute_aspect_ratio_fill_width_from_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_aspect_ratio_height_overrides_inset.html b/test_fixtures/absolute_aspect_ratio_height_overrides_inset.html deleted file mode 100644 index 08f0686aa..000000000 --- a/test_fixtures/absolute_aspect_ratio_height_overrides_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_aspect_ratio_width_overrides_inset.html b/test_fixtures/absolute_aspect_ratio_width_overrides_inset.html deleted file mode 100644 index 067a7b653..000000000 --- a/test_fixtures/absolute_aspect_ratio_width_overrides_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_child_with_main_margin.html b/test_fixtures/absolute_child_with_main_margin.html deleted file mode 100644 index 871a71bff..000000000 --- a/test_fixtures/absolute_child_with_main_margin.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_child_with_max_height.html b/test_fixtures/absolute_child_with_max_height.html deleted file mode 100644 index c0f42dd92..000000000 --- a/test_fixtures/absolute_child_with_max_height.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_child_with_max_height_larger_shrinkable_grandchild.html b/test_fixtures/absolute_child_with_max_height_larger_shrinkable_grandchild.html deleted file mode 100644 index 2473399f0..000000000 --- a/test_fixtures/absolute_child_with_max_height_larger_shrinkable_grandchild.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_align_items_and_justify_content_center.html b/test_fixtures/absolute_layout_align_items_and_justify_content_center.html deleted file mode 100644 index f9d7a08d6..000000000 --- a/test_fixtures/absolute_layout_align_items_and_justify_content_center.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_align_items_and_justify_content_center_and_bottom_position.html b/test_fixtures/absolute_layout_align_items_and_justify_content_center_and_bottom_position.html deleted file mode 100644 index f2866e99d..000000000 --- a/test_fixtures/absolute_layout_align_items_and_justify_content_center_and_bottom_position.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_align_items_and_justify_content_center_and_left_position.html b/test_fixtures/absolute_layout_align_items_and_justify_content_center_and_left_position.html deleted file mode 100644 index aeaf86dde..000000000 --- a/test_fixtures/absolute_layout_align_items_and_justify_content_center_and_left_position.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_align_items_and_justify_content_center_and_right_position.html b/test_fixtures/absolute_layout_align_items_and_justify_content_center_and_right_position.html deleted file mode 100644 index 23bd94ef1..000000000 --- a/test_fixtures/absolute_layout_align_items_and_justify_content_center_and_right_position.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_align_items_and_justify_content_center_and_top_position.html b/test_fixtures/absolute_layout_align_items_and_justify_content_center_and_top_position.html deleted file mode 100644 index 4a8181ba5..000000000 --- a/test_fixtures/absolute_layout_align_items_and_justify_content_center_and_top_position.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_align_items_and_justify_content_flex_end.html b/test_fixtures/absolute_layout_align_items_and_justify_content_flex_end.html deleted file mode 100644 index 83bdb2f7e..000000000 --- a/test_fixtures/absolute_layout_align_items_and_justify_content_flex_end.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_align_items_center.html b/test_fixtures/absolute_layout_align_items_center.html deleted file mode 100644 index ce5c0e931..000000000 --- a/test_fixtures/absolute_layout_align_items_center.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_align_items_center_on_child_only.html b/test_fixtures/absolute_layout_align_items_center_on_child_only.html deleted file mode 100644 index 1cde9b486..000000000 --- a/test_fixtures/absolute_layout_align_items_center_on_child_only.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_child_order.html b/test_fixtures/absolute_layout_child_order.html deleted file mode 100644 index e9f42fb5d..000000000 --- a/test_fixtures/absolute_layout_child_order.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_in_wrap_reverse_column_container.html b/test_fixtures/absolute_layout_in_wrap_reverse_column_container.html deleted file mode 100644 index 47d916207..000000000 --- a/test_fixtures/absolute_layout_in_wrap_reverse_column_container.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_in_wrap_reverse_column_container_flex_end.html b/test_fixtures/absolute_layout_in_wrap_reverse_column_container_flex_end.html deleted file mode 100644 index 20fd80321..000000000 --- a/test_fixtures/absolute_layout_in_wrap_reverse_column_container_flex_end.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_in_wrap_reverse_row_container.html b/test_fixtures/absolute_layout_in_wrap_reverse_row_container.html deleted file mode 100644 index 605ebe392..000000000 --- a/test_fixtures/absolute_layout_in_wrap_reverse_row_container.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_in_wrap_reverse_row_container_flex_end.html b/test_fixtures/absolute_layout_in_wrap_reverse_row_container_flex_end.html deleted file mode 100644 index 52f9e3f8f..000000000 --- a/test_fixtures/absolute_layout_in_wrap_reverse_row_container_flex_end.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_justify_content_center.html b/test_fixtures/absolute_layout_justify_content_center.html deleted file mode 100644 index 2838561da..000000000 --- a/test_fixtures/absolute_layout_justify_content_center.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_no_size.html b/test_fixtures/absolute_layout_no_size.html deleted file mode 100644 index b974f6153..000000000 --- a/test_fixtures/absolute_layout_no_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_percentage_bottom_based_on_parent_height.html b/test_fixtures/absolute_layout_percentage_bottom_based_on_parent_height.html deleted file mode 100644 index 89a255188..000000000 --- a/test_fixtures/absolute_layout_percentage_bottom_based_on_parent_height.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_percentage_height.html b/test_fixtures/absolute_layout_percentage_height.html deleted file mode 100644 index 9dd9b5fe5..000000000 --- a/test_fixtures/absolute_layout_percentage_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_row_width_height_end_bottom.html b/test_fixtures/absolute_layout_row_width_height_end_bottom.html deleted file mode 100644 index 4bc6dd9f0..000000000 --- a/test_fixtures/absolute_layout_row_width_height_end_bottom.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_start_top_end_bottom.html b/test_fixtures/absolute_layout_start_top_end_bottom.html deleted file mode 100644 index e433feb44..000000000 --- a/test_fixtures/absolute_layout_start_top_end_bottom.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_width_height_end_bottom.html b/test_fixtures/absolute_layout_width_height_end_bottom.html deleted file mode 100644 index ae36dfbc6..000000000 --- a/test_fixtures/absolute_layout_width_height_end_bottom.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_width_height_start_top.html b/test_fixtures/absolute_layout_width_height_start_top.html deleted file mode 100644 index 745234c75..000000000 --- a/test_fixtures/absolute_layout_width_height_start_top.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_layout_width_height_start_top_end_bottom.html b/test_fixtures/absolute_layout_width_height_start_top_end_bottom.html deleted file mode 100644 index 4892afcb0..000000000 --- a/test_fixtures/absolute_layout_width_height_start_top_end_bottom.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_margin_bottom_left.html b/test_fixtures/absolute_margin_bottom_left.html deleted file mode 100644 index 4370dee71..000000000 --- a/test_fixtures/absolute_margin_bottom_left.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_minmax_bottom_right_max.html b/test_fixtures/absolute_minmax_bottom_right_max.html deleted file mode 100644 index 0f94acbd7..000000000 --- a/test_fixtures/absolute_minmax_bottom_right_max.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_minmax_bottom_right_min_max.html b/test_fixtures/absolute_minmax_bottom_right_min_max.html deleted file mode 100644 index 0bd7c475c..000000000 --- a/test_fixtures/absolute_minmax_bottom_right_min_max.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_minmax_bottom_right_min_max_preferred.html b/test_fixtures/absolute_minmax_bottom_right_min_max_preferred.html deleted file mode 100644 index f25438e94..000000000 --- a/test_fixtures/absolute_minmax_bottom_right_min_max_preferred.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_minmax_top_left_bottom_right_max.html b/test_fixtures/absolute_minmax_top_left_bottom_right_max.html deleted file mode 100644 index a9145eb0b..000000000 --- a/test_fixtures/absolute_minmax_top_left_bottom_right_max.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_minmax_top_left_bottom_right_min_max.html b/test_fixtures/absolute_minmax_top_left_bottom_right_min_max.html deleted file mode 100644 index 2b31d18db..000000000 --- a/test_fixtures/absolute_minmax_top_left_bottom_right_min_max.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_padding_border_overrides_max_size.html b/test_fixtures/absolute_padding_border_overrides_max_size.html deleted file mode 100644 index adffdaf0c..000000000 --- a/test_fixtures/absolute_padding_border_overrides_max_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/absolute_padding_border_overrides_size.html b/test_fixtures/absolute_padding_border_overrides_size.html deleted file mode 100644 index 24bcbbc60..000000000 --- a/test_fixtures/absolute_padding_border_overrides_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_baseline.html b/test_fixtures/align_baseline.html deleted file mode 100644 index 7fd614a83..000000000 --- a/test_fixtures/align_baseline.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_baseline_child.html b/test_fixtures/align_baseline_child.html deleted file mode 100644 index e1b8b6306..000000000 --- a/test_fixtures/align_baseline_child.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_baseline_child_margin.html b/test_fixtures/align_baseline_child_margin.html deleted file mode 100644 index f3b3de7e3..000000000 --- a/test_fixtures/align_baseline_child_margin.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_baseline_child_margin_percent.html b/test_fixtures/align_baseline_child_margin_percent.html deleted file mode 100644 index 70531ecf8..000000000 --- a/test_fixtures/align_baseline_child_margin_percent.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_baseline_child_padding.html b/test_fixtures/align_baseline_child_padding.html deleted file mode 100644 index a7349fb6a..000000000 --- a/test_fixtures/align_baseline_child_padding.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_baseline_child_top.html b/test_fixtures/align_baseline_child_top.html deleted file mode 100644 index 6884d71de..000000000 --- a/test_fixtures/align_baseline_child_top.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_baseline_child_top2.html b/test_fixtures/align_baseline_child_top2.html deleted file mode 100644 index 2eb3b4da0..000000000 --- a/test_fixtures/align_baseline_child_top2.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_baseline_column.html b/test_fixtures/align_baseline_column.html deleted file mode 100644 index 47e54efa7..000000000 --- a/test_fixtures/align_baseline_column.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_baseline_double_nested_child.html b/test_fixtures/align_baseline_double_nested_child.html deleted file mode 100644 index f213bc4a4..000000000 --- a/test_fixtures/align_baseline_double_nested_child.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_baseline_nested_child.html b/test_fixtures/align_baseline_nested_child.html deleted file mode 100644 index 7eed67f7b..000000000 --- a/test_fixtures/align_baseline_nested_child.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_center_should_size_based_on_content.html b/test_fixtures/align_center_should_size_based_on_content.html deleted file mode 100644 index b951f8b4b..000000000 --- a/test_fixtures/align_center_should_size_based_on_content.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_content_flex_start_without_height_on_children.html b/test_fixtures/align_content_flex_start_without_height_on_children.html deleted file mode 100644 index e1f86c504..000000000 --- a/test_fixtures/align_content_flex_start_without_height_on_children.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_content_not_stretch_with_align_items_stretch.html b/test_fixtures/align_content_not_stretch_with_align_items_stretch.html deleted file mode 100644 index b5d6b2287..000000000 --- a/test_fixtures/align_content_not_stretch_with_align_items_stretch.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_content_stretch.html b/test_fixtures/align_content_stretch.html deleted file mode 100644 index 1c5f48c36..000000000 --- a/test_fixtures/align_content_stretch.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_content_stretch_is_not_overriding_align_items.html b/test_fixtures/align_content_stretch_is_not_overriding_align_items.html deleted file mode 100644 index 11b5b622f..000000000 --- a/test_fixtures/align_content_stretch_is_not_overriding_align_items.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_content_stretch_row.html b/test_fixtures/align_content_stretch_row.html deleted file mode 100644 index 92a0a7a4c..000000000 --- a/test_fixtures/align_content_stretch_row.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_content_stretch_row_with_fixed_height.html b/test_fixtures/align_content_stretch_row_with_fixed_height.html deleted file mode 100644 index 92cc48d05..000000000 --- a/test_fixtures/align_content_stretch_row_with_fixed_height.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_content_stretch_row_with_flex.html b/test_fixtures/align_content_stretch_row_with_flex.html deleted file mode 100644 index e1ee235ae..000000000 --- a/test_fixtures/align_content_stretch_row_with_flex.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_content_stretch_row_with_flex_no_shrink.html b/test_fixtures/align_content_stretch_row_with_flex_no_shrink.html deleted file mode 100644 index d82b846ad..000000000 --- a/test_fixtures/align_content_stretch_row_with_flex_no_shrink.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_content_stretch_row_with_margin.html b/test_fixtures/align_content_stretch_row_with_margin.html deleted file mode 100644 index 859a14c8c..000000000 --- a/test_fixtures/align_content_stretch_row_with_margin.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_content_stretch_row_with_max_height.html b/test_fixtures/align_content_stretch_row_with_max_height.html deleted file mode 100644 index 72180ff78..000000000 --- a/test_fixtures/align_content_stretch_row_with_max_height.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_content_stretch_row_with_min_height.html b/test_fixtures/align_content_stretch_row_with_min_height.html deleted file mode 100644 index c78e89164..000000000 --- a/test_fixtures/align_content_stretch_row_with_min_height.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_content_stretch_row_with_padding.html b/test_fixtures/align_content_stretch_row_with_padding.html deleted file mode 100644 index f2aa84d38..000000000 --- a/test_fixtures/align_content_stretch_row_with_padding.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_content_stretch_row_with_single_row.html b/test_fixtures/align_content_stretch_row_with_single_row.html deleted file mode 100644 index ec1442701..000000000 --- a/test_fixtures/align_content_stretch_row_with_single_row.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_flex_start_with_shrinking_children.html b/test_fixtures/align_flex_start_with_shrinking_children.html deleted file mode 100644 index 823bec5d7..000000000 --- a/test_fixtures/align_flex_start_with_shrinking_children.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_flex_start_with_shrinking_children_with_stretch.html b/test_fixtures/align_flex_start_with_shrinking_children_with_stretch.html deleted file mode 100644 index 5e0798378..000000000 --- a/test_fixtures/align_flex_start_with_shrinking_children_with_stretch.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_flex_start_with_stretching_children.html b/test_fixtures/align_flex_start_with_stretching_children.html deleted file mode 100644 index bc099b939..000000000 --- a/test_fixtures/align_flex_start_with_stretching_children.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_items_center.html b/test_fixtures/align_items_center.html deleted file mode 100644 index b0c1dc473..000000000 --- a/test_fixtures/align_items_center.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_items_center_child_with_margin_bigger_than_parent.html b/test_fixtures/align_items_center_child_with_margin_bigger_than_parent.html deleted file mode 100644 index 869a5e7b3..000000000 --- a/test_fixtures/align_items_center_child_with_margin_bigger_than_parent.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_items_center_child_without_margin_bigger_than_parent.html b/test_fixtures/align_items_center_child_without_margin_bigger_than_parent.html deleted file mode 100644 index e94926f06..000000000 --- a/test_fixtures/align_items_center_child_without_margin_bigger_than_parent.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_items_center_min_max_with_padding.html b/test_fixtures/align_items_center_min_max_with_padding.html deleted file mode 100644 index e90a63401..000000000 --- a/test_fixtures/align_items_center_min_max_with_padding.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_items_center_with_child_margin.html b/test_fixtures/align_items_center_with_child_margin.html deleted file mode 100644 index a2b0431f3..000000000 --- a/test_fixtures/align_items_center_with_child_margin.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_items_center_with_child_top.html b/test_fixtures/align_items_center_with_child_top.html deleted file mode 100644 index e893a4e4e..000000000 --- a/test_fixtures/align_items_center_with_child_top.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_items_flex_end.html b/test_fixtures/align_items_flex_end.html deleted file mode 100644 index 763f3954d..000000000 --- a/test_fixtures/align_items_flex_end.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_items_flex_end_child_with_margin_bigger_than_parent.html b/test_fixtures/align_items_flex_end_child_with_margin_bigger_than_parent.html deleted file mode 100644 index 7c682947d..000000000 --- a/test_fixtures/align_items_flex_end_child_with_margin_bigger_than_parent.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_items_flex_end_child_without_margin_bigger_than_parent.html b/test_fixtures/align_items_flex_end_child_without_margin_bigger_than_parent.html deleted file mode 100644 index 1abb00022..000000000 --- a/test_fixtures/align_items_flex_end_child_without_margin_bigger_than_parent.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_items_flex_start.html b/test_fixtures/align_items_flex_start.html deleted file mode 100644 index 82deb2417..000000000 --- a/test_fixtures/align_items_flex_start.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_items_min_max.html b/test_fixtures/align_items_min_max.html deleted file mode 100644 index 163e111a0..000000000 --- a/test_fixtures/align_items_min_max.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_items_stretch.html b/test_fixtures/align_items_stretch.html deleted file mode 100644 index 69beb2b54..000000000 --- a/test_fixtures/align_items_stretch.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_items_stretch_min_cross.html b/test_fixtures/align_items_stretch_min_cross.html deleted file mode 100644 index 00680d13c..000000000 --- a/test_fixtures/align_items_stretch_min_cross.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_self_baseline.html b/test_fixtures/align_self_baseline.html deleted file mode 100644 index 71ee218b4..000000000 --- a/test_fixtures/align_self_baseline.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_self_center.html b/test_fixtures/align_self_center.html deleted file mode 100644 index 93b9d1637..000000000 --- a/test_fixtures/align_self_center.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_self_center_undefined_max_height.html b/test_fixtures/align_self_center_undefined_max_height.html deleted file mode 100644 index 06d2107bf..000000000 --- a/test_fixtures/align_self_center_undefined_max_height.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_self_flex_end.html b/test_fixtures/align_self_flex_end.html deleted file mode 100644 index 9329a4e8b..000000000 --- a/test_fixtures/align_self_flex_end.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_self_flex_end_override_flex_start.html b/test_fixtures/align_self_flex_end_override_flex_start.html deleted file mode 100644 index 61ee857e0..000000000 --- a/test_fixtures/align_self_flex_end_override_flex_start.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_self_flex_start.html b/test_fixtures/align_self_flex_start.html deleted file mode 100644 index 46cd001ff..000000000 --- a/test_fixtures/align_self_flex_start.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/align_stretch_should_size_based_on_parent.html b/test_fixtures/align_stretch_should_size_based_on_parent.html deleted file mode 100644 index 892ffbe10..000000000 --- a/test_fixtures/align_stretch_should_size_based_on_parent.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_column_fill_height.html b/test_fixtures/aspect_ratio_flex_column_fill_height.html deleted file mode 100644 index cca582e01..000000000 --- a/test_fixtures/aspect_ratio_flex_column_fill_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_column_fill_max_width.html b/test_fixtures/aspect_ratio_flex_column_fill_max_width.html deleted file mode 100644 index 62481d109..000000000 --- a/test_fixtures/aspect_ratio_flex_column_fill_max_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_column_fill_min_height.html b/test_fixtures/aspect_ratio_flex_column_fill_min_height.html deleted file mode 100644 index fea7dd73c..000000000 --- a/test_fixtures/aspect_ratio_flex_column_fill_min_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_column_fill_min_width.html b/test_fixtures/aspect_ratio_flex_column_fill_min_width.html deleted file mode 100644 index 4ca571da1..000000000 --- a/test_fixtures/aspect_ratio_flex_column_fill_min_width.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
- -
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_column_fill_width.html b/test_fixtures/aspect_ratio_flex_column_fill_width.html deleted file mode 100644 index 99e1d6292..000000000 --- a/test_fixtures/aspect_ratio_flex_column_fill_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_column_fill_width_flex.html b/test_fixtures/aspect_ratio_flex_column_fill_width_flex.html deleted file mode 100644 index c64bec8dc..000000000 --- a/test_fixtures/aspect_ratio_flex_column_fill_width_flex.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_column_stretch_fill_height.html b/test_fixtures/aspect_ratio_flex_column_stretch_fill_height.html deleted file mode 100644 index 783e350c1..000000000 --- a/test_fixtures/aspect_ratio_flex_column_stretch_fill_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_column_stretch_fill_max_height.html b/test_fixtures/aspect_ratio_flex_column_stretch_fill_max_height.html deleted file mode 100644 index 90a31ea54..000000000 --- a/test_fixtures/aspect_ratio_flex_column_stretch_fill_max_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH​HH​HH​HH​HH​HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_column_stretch_fill_max_width.html b/test_fixtures/aspect_ratio_flex_column_stretch_fill_max_width.html deleted file mode 100644 index 389b171a6..000000000 --- a/test_fixtures/aspect_ratio_flex_column_stretch_fill_max_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_column_stretch_fill_width.html b/test_fixtures/aspect_ratio_flex_column_stretch_fill_width.html deleted file mode 100644 index ef5f58f06..000000000 --- a/test_fixtures/aspect_ratio_flex_column_stretch_fill_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_row_fill_height.html b/test_fixtures/aspect_ratio_flex_row_fill_height.html deleted file mode 100644 index a5dc4e7c3..000000000 --- a/test_fixtures/aspect_ratio_flex_row_fill_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_row_fill_max_height.html b/test_fixtures/aspect_ratio_flex_row_fill_max_height.html deleted file mode 100644 index 1e6e811ee..000000000 --- a/test_fixtures/aspect_ratio_flex_row_fill_max_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH​HH​HH​HH​HH​HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_row_fill_max_width.html b/test_fixtures/aspect_ratio_flex_row_fill_max_width.html deleted file mode 100644 index 025004e75..000000000 --- a/test_fixtures/aspect_ratio_flex_row_fill_max_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_row_fill_min_height.html b/test_fixtures/aspect_ratio_flex_row_fill_min_height.html deleted file mode 100644 index 6ee37bf1e..000000000 --- a/test_fixtures/aspect_ratio_flex_row_fill_min_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_row_fill_min_width.html b/test_fixtures/aspect_ratio_flex_row_fill_min_width.html deleted file mode 100644 index 7ff6cbf9b..000000000 --- a/test_fixtures/aspect_ratio_flex_row_fill_min_width.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
- -
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_row_fill_width.html b/test_fixtures/aspect_ratio_flex_row_fill_width.html deleted file mode 100644 index efd541ada..000000000 --- a/test_fixtures/aspect_ratio_flex_row_fill_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_row_fill_width_flex.html b/test_fixtures/aspect_ratio_flex_row_fill_width_flex.html deleted file mode 100644 index d3f9013b3..000000000 --- a/test_fixtures/aspect_ratio_flex_row_fill_width_flex.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_row_stretch_fill_height.html b/test_fixtures/aspect_ratio_flex_row_stretch_fill_height.html deleted file mode 100644 index e03e82fd6..000000000 --- a/test_fixtures/aspect_ratio_flex_row_stretch_fill_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_row_stretch_fill_max_height.html b/test_fixtures/aspect_ratio_flex_row_stretch_fill_max_height.html deleted file mode 100644 index 68d62153c..000000000 --- a/test_fixtures/aspect_ratio_flex_row_stretch_fill_max_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH​HH​HH​HH​HH​HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_row_stretch_fill_max_width.html b/test_fixtures/aspect_ratio_flex_row_stretch_fill_max_width.html deleted file mode 100644 index 064b86f1c..000000000 --- a/test_fixtures/aspect_ratio_flex_row_stretch_fill_max_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_row_stretch_fill_width.html b/test_fixtures/aspect_ratio_flex_row_stretch_fill_width.html deleted file mode 100644 index 47b4da044..000000000 --- a/test_fixtures/aspect_ratio_flex_row_stretch_fill_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/bevy_issue_7976_3_level.html b/test_fixtures/bevy_issue_7976_3_level.html deleted file mode 100644 index 5389a6265..000000000 --- a/test_fixtures/bevy_issue_7976_3_level.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/bevy_issue_7976_4_level.html b/test_fixtures/bevy_issue_7976_4_level.html deleted file mode 100644 index 68100671a..000000000 --- a/test_fixtures/bevy_issue_7976_4_level.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/bevy_issue_7976_reduced.html b/test_fixtures/bevy_issue_7976_reduced.html deleted file mode 100644 index 0239b6dd7..000000000 --- a/test_fixtures/bevy_issue_7976_reduced.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/bevy_issue_8017_reduced.html b/test_fixtures/bevy_issue_8017_reduced.html deleted file mode 100644 index d8b53f3a3..000000000 --- a/test_fixtures/bevy_issue_8017_reduced.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Bevy #8017 - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/bevy_issue_9530_reduced.html b/test_fixtures/bevy_issue_9530_reduced.html deleted file mode 100644 index 4d6f223f8..000000000 --- a/test_fixtures/bevy_issue_9530_reduced.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH​HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/bevy_issue_9530_reduced2.html b/test_fixtures/bevy_issue_9530_reduced2.html deleted file mode 100644 index f488740ae..000000000 --- a/test_fixtures/bevy_issue_9530_reduced2.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH​HH​HH​HH​HH​HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/bevy_issue_9530_reduced3.html b/test_fixtures/bevy_issue_9530_reduced3.html deleted file mode 100644 index 44488c9c0..000000000 --- a/test_fixtures/bevy_issue_9530_reduced3.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH​HH​HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/bevy_issue_9530_reduced4.html b/test_fixtures/bevy_issue_9530_reduced4.html deleted file mode 100644 index 42f84c156..000000000 --- a/test_fixtures/bevy_issue_9530_reduced4.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH​HH​HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.html b/test_fixtures/block/block_absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.html new file mode 100644 index 000000000..eaf144277 --- /dev/null +++ b/test_fixtures/block/block_absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_aspect_ratio_fill_height.html b/test_fixtures/block/block_absolute_aspect_ratio_fill_height.html new file mode 100644 index 000000000..51886e394 --- /dev/null +++ b/test_fixtures/block/block_absolute_aspect_ratio_fill_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_aspect_ratio_fill_height_from_inset.html b/test_fixtures/block/block_absolute_aspect_ratio_fill_height_from_inset.html new file mode 100644 index 000000000..4783f76bf --- /dev/null +++ b/test_fixtures/block/block_absolute_aspect_ratio_fill_height_from_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_aspect_ratio_fill_max_height.html b/test_fixtures/block/block_absolute_aspect_ratio_fill_max_height.html new file mode 100644 index 000000000..a8c1ad44a --- /dev/null +++ b/test_fixtures/block/block_absolute_aspect_ratio_fill_max_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_aspect_ratio_fill_max_width.html b/test_fixtures/block/block_absolute_aspect_ratio_fill_max_width.html new file mode 100644 index 000000000..125eb0c41 --- /dev/null +++ b/test_fixtures/block/block_absolute_aspect_ratio_fill_max_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_aspect_ratio_fill_min_height.html b/test_fixtures/block/block_absolute_aspect_ratio_fill_min_height.html new file mode 100644 index 000000000..f98a588a3 --- /dev/null +++ b/test_fixtures/block/block_absolute_aspect_ratio_fill_min_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_aspect_ratio_fill_min_width.html b/test_fixtures/block/block_absolute_aspect_ratio_fill_min_width.html new file mode 100644 index 000000000..bfd301aca --- /dev/null +++ b/test_fixtures/block/block_absolute_aspect_ratio_fill_min_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_aspect_ratio_fill_width.html b/test_fixtures/block/block_absolute_aspect_ratio_fill_width.html new file mode 100644 index 000000000..eae18110d --- /dev/null +++ b/test_fixtures/block/block_absolute_aspect_ratio_fill_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_aspect_ratio_fill_width_from_inset.html b/test_fixtures/block/block_absolute_aspect_ratio_fill_width_from_inset.html new file mode 100644 index 000000000..d2b1160fc --- /dev/null +++ b/test_fixtures/block/block_absolute_aspect_ratio_fill_width_from_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_aspect_ratio_height_overrides_inset.html b/test_fixtures/block/block_absolute_aspect_ratio_height_overrides_inset.html new file mode 100644 index 000000000..141971b8c --- /dev/null +++ b/test_fixtures/block/block_absolute_aspect_ratio_height_overrides_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_aspect_ratio_width_overrides_inset.html b/test_fixtures/block/block_absolute_aspect_ratio_width_overrides_inset.html new file mode 100644 index 000000000..1187bb021 --- /dev/null +++ b/test_fixtures/block/block_absolute_aspect_ratio_width_overrides_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block_absolute_child_with_margin_x.html b/test_fixtures/block/block_absolute_child_with_margin_x.html similarity index 75% rename from test_fixtures/block_absolute_child_with_margin_x.html rename to test_fixtures/block/block_absolute_child_with_margin_x.html index 91f4c40f8..33482c0b7 100644 --- a/test_fixtures/block_absolute_child_with_margin_x.html +++ b/test_fixtures/block/block_absolute_child_with_margin_x.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block_absolute_child_with_margin_y.html b/test_fixtures/block/block_absolute_child_with_margin_y.html similarity index 75% rename from test_fixtures/block_absolute_child_with_margin_y.html rename to test_fixtures/block/block_absolute_child_with_margin_y.html index 04d4c476c..6f7169f84 100644 --- a/test_fixtures/block_absolute_child_with_margin_y.html +++ b/test_fixtures/block/block_absolute_child_with_margin_y.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block/block_absolute_child_with_max_height.html b/test_fixtures/block/block_absolute_child_with_max_height.html new file mode 100644 index 000000000..3cd665372 --- /dev/null +++ b/test_fixtures/block/block_absolute_child_with_max_height.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_layout_child_order.html b/test_fixtures/block/block_absolute_layout_child_order.html new file mode 100644 index 000000000..79dc5c11f --- /dev/null +++ b/test_fixtures/block/block_absolute_layout_child_order.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_layout_no_size.html b/test_fixtures/block/block_absolute_layout_no_size.html new file mode 100644 index 000000000..686d6a87d --- /dev/null +++ b/test_fixtures/block/block_absolute_layout_no_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block_absolute_layout_percentage_bottom_based_on_parent_height.html b/test_fixtures/block/block_absolute_layout_percentage_bottom_based_on_parent_height.html similarity index 75% rename from test_fixtures/block_absolute_layout_percentage_bottom_based_on_parent_height.html rename to test_fixtures/block/block_absolute_layout_percentage_bottom_based_on_parent_height.html index 168af2b47..099f7e990 100644 --- a/test_fixtures/block_absolute_layout_percentage_bottom_based_on_parent_height.html +++ b/test_fixtures/block/block_absolute_layout_percentage_bottom_based_on_parent_height.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block/block_absolute_layout_percentage_height.html b/test_fixtures/block/block_absolute_layout_percentage_height.html new file mode 100644 index 000000000..4b366b1b8 --- /dev/null +++ b/test_fixtures/block/block_absolute_layout_percentage_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_layout_row_width_height_end_bottom.html b/test_fixtures/block/block_absolute_layout_row_width_height_end_bottom.html new file mode 100644 index 000000000..73c1759ad --- /dev/null +++ b/test_fixtures/block/block_absolute_layout_row_width_height_end_bottom.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_layout_start_top_end_bottom.html b/test_fixtures/block/block_absolute_layout_start_top_end_bottom.html new file mode 100644 index 000000000..be439cb8c --- /dev/null +++ b/test_fixtures/block/block_absolute_layout_start_top_end_bottom.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_layout_width_height_end_bottom.html b/test_fixtures/block/block_absolute_layout_width_height_end_bottom.html new file mode 100644 index 000000000..c98e920a7 --- /dev/null +++ b/test_fixtures/block/block_absolute_layout_width_height_end_bottom.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_layout_width_height_start_top.html b/test_fixtures/block/block_absolute_layout_width_height_start_top.html new file mode 100644 index 000000000..83b9ff06b --- /dev/null +++ b/test_fixtures/block/block_absolute_layout_width_height_start_top.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_layout_width_height_start_top_end_bottom.html b/test_fixtures/block/block_absolute_layout_width_height_start_top_end_bottom.html new file mode 100644 index 000000000..5126b9d57 --- /dev/null +++ b/test_fixtures/block/block_absolute_layout_width_height_start_top_end_bottom.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block_absolute_layout_within_border.html b/test_fixtures/block/block_absolute_layout_within_border.html similarity index 81% rename from test_fixtures/block_absolute_layout_within_border.html rename to test_fixtures/block/block_absolute_layout_within_border.html index ec58bb88f..5694a726d 100644 --- a/test_fixtures/block_absolute_layout_within_border.html +++ b/test_fixtures/block/block_absolute_layout_within_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block/block_absolute_margin_auto_bottom_and_top_with_inset.html b/test_fixtures/block/block_absolute_margin_auto_bottom_and_top_with_inset.html new file mode 100644 index 000000000..d3def18d7 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_bottom_and_top_with_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_bottom_and_top_without_inset.html b/test_fixtures/block/block_absolute_margin_auto_bottom_and_top_without_inset.html new file mode 100644 index 000000000..5d7cb0017 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_bottom_and_top_without_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_bottom_with_inset.html b/test_fixtures/block/block_absolute_margin_auto_bottom_with_inset.html new file mode 100644 index 000000000..dce831a8e --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_bottom_with_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_bottom_without_inset.html b/test_fixtures/block/block_absolute_margin_auto_bottom_without_inset.html new file mode 100644 index 000000000..7896923db --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_bottom_without_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_left_and_right_with_inset.html b/test_fixtures/block/block_absolute_margin_auto_left_and_right_with_inset.html new file mode 100644 index 000000000..c95708e16 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_left_and_right_with_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_left_and_right_without_inset.html b/test_fixtures/block/block_absolute_margin_auto_left_and_right_without_inset.html new file mode 100644 index 000000000..4c95597c8 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_left_and_right_without_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_left_child_bigger_than_parent_with_inset.html b/test_fixtures/block/block_absolute_margin_auto_left_child_bigger_than_parent_with_inset.html new file mode 100644 index 000000000..1d4ae454c --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_left_child_bigger_than_parent_with_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_left_child_bigger_than_parent_without_inset.html b/test_fixtures/block/block_absolute_margin_auto_left_child_bigger_than_parent_without_inset.html new file mode 100644 index 000000000..c724ccdfd --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_left_child_bigger_than_parent_without_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_with_inset.html b/test_fixtures/block/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_with_inset.html new file mode 100644 index 000000000..c565e7829 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_with_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_without_inset.html b/test_fixtures/block/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_without_inset.html new file mode 100644 index 000000000..8a0dcbbd0 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_without_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_left_right_child_bigger_than_parent_with_inset.html b/test_fixtures/block/block_absolute_margin_auto_left_right_child_bigger_than_parent_with_inset.html new file mode 100644 index 000000000..348b21c18 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_left_right_child_bigger_than_parent_with_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_left_right_child_bigger_than_parent_without_inset.html b/test_fixtures/block/block_absolute_margin_auto_left_right_child_bigger_than_parent_without_inset.html new file mode 100644 index 000000000..bc49a6e75 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_left_right_child_bigger_than_parent_without_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_left_with_inset.html b/test_fixtures/block/block_absolute_margin_auto_left_with_inset.html new file mode 100644 index 000000000..218f748f0 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_left_with_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_left_without_inset.html b/test_fixtures/block/block_absolute_margin_auto_left_without_inset.html new file mode 100644 index 000000000..2d61acea4 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_left_without_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_mutiple_children_with_inset.html b/test_fixtures/block/block_absolute_margin_auto_mutiple_children_with_inset.html similarity index 75% rename from test_fixtures/block_absolute_margin_auto_mutiple_children_with_inset.html rename to test_fixtures/block/block_absolute_margin_auto_mutiple_children_with_inset.html index 68252491c..c22b21ac2 100644 --- a/test_fixtures/block_absolute_margin_auto_mutiple_children_with_inset.html +++ b/test_fixtures/block/block_absolute_margin_auto_mutiple_children_with_inset.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block/block_absolute_margin_auto_mutiple_children_without_inset.html b/test_fixtures/block/block_absolute_margin_auto_mutiple_children_without_inset.html new file mode 100644 index 000000000..95a077ec2 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_mutiple_children_without_inset.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_right_with_inset.html b/test_fixtures/block/block_absolute_margin_auto_right_with_inset.html new file mode 100644 index 000000000..cb177645a --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_right_with_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_right_without_inset.html b/test_fixtures/block/block_absolute_margin_auto_right_without_inset.html new file mode 100644 index 000000000..474f8feb6 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_right_without_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_top_with_inset.html b/test_fixtures/block/block_absolute_margin_auto_top_with_inset.html new file mode 100644 index 000000000..c9d66b04d --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_top_with_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_auto_top_without_inset.html b/test_fixtures/block/block_absolute_margin_auto_top_without_inset.html new file mode 100644 index 000000000..f5bffd7f3 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_auto_top_without_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_bottom_left_with_inset.html b/test_fixtures/block/block_absolute_margin_bottom_left_with_inset.html new file mode 100644 index 000000000..580584275 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_bottom_left_with_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_margin_bottom_left_without_inset.html b/test_fixtures/block/block_absolute_margin_bottom_left_without_inset.html new file mode 100644 index 000000000..a76577aa5 --- /dev/null +++ b/test_fixtures/block/block_absolute_margin_bottom_left_without_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_minmax_bottom_right_max.html b/test_fixtures/block/block_absolute_minmax_bottom_right_max.html new file mode 100644 index 000000000..7cf8edbde --- /dev/null +++ b/test_fixtures/block/block_absolute_minmax_bottom_right_max.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_minmax_bottom_right_min_max.html b/test_fixtures/block/block_absolute_minmax_bottom_right_min_max.html new file mode 100644 index 000000000..5001cea35 --- /dev/null +++ b/test_fixtures/block/block_absolute_minmax_bottom_right_min_max.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_minmax_bottom_right_min_max_preferred.html b/test_fixtures/block/block_absolute_minmax_bottom_right_min_max_preferred.html new file mode 100644 index 000000000..435de77b0 --- /dev/null +++ b/test_fixtures/block/block_absolute_minmax_bottom_right_min_max_preferred.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_minmax_top_left_bottom_right_max.html b/test_fixtures/block/block_absolute_minmax_top_left_bottom_right_max.html new file mode 100644 index 000000000..8d10a86fe --- /dev/null +++ b/test_fixtures/block/block_absolute_minmax_top_left_bottom_right_max.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_minmax_top_left_bottom_right_min_max.html b/test_fixtures/block/block_absolute_minmax_top_left_bottom_right_min_max.html new file mode 100644 index 000000000..cd615fdea --- /dev/null +++ b/test_fixtures/block/block_absolute_minmax_top_left_bottom_right_min_max.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_no_styles.html b/test_fixtures/block/block_absolute_no_styles.html new file mode 100644 index 000000000..87c26712a --- /dev/null +++ b/test_fixtures/block/block_absolute_no_styles.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_padding_border_overrides_max_size.html b/test_fixtures/block/block_absolute_padding_border_overrides_max_size.html new file mode 100644 index 000000000..33f1ca457 --- /dev/null +++ b/test_fixtures/block/block_absolute_padding_border_overrides_max_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_absolute_padding_border_overrides_size.html b/test_fixtures/block/block_absolute_padding_border_overrides_size.html new file mode 100644 index 000000000..71d772504 --- /dev/null +++ b/test_fixtures/block/block_absolute_padding_border_overrides_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_align_baseline_child.html b/test_fixtures/block/block_align_baseline_child.html new file mode 100644 index 000000000..ec2937500 --- /dev/null +++ b/test_fixtures/block/block_align_baseline_child.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_align_baseline_child_margin.html b/test_fixtures/block/block_align_baseline_child_margin.html new file mode 100644 index 000000000..6fdba1177 --- /dev/null +++ b/test_fixtures/block/block_align_baseline_child_margin.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_align_baseline_child_margin_percent.html b/test_fixtures/block/block_align_baseline_child_margin_percent.html new file mode 100644 index 000000000..4592945d0 --- /dev/null +++ b/test_fixtures/block/block_align_baseline_child_margin_percent.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_align_baseline_child_padding.html b/test_fixtures/block/block_align_baseline_child_padding.html new file mode 100644 index 000000000..7b15c8eed --- /dev/null +++ b/test_fixtures/block/block_align_baseline_child_padding.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_align_baseline_child_top.html b/test_fixtures/block/block_align_baseline_child_top.html new file mode 100644 index 000000000..86cabcf49 --- /dev/null +++ b/test_fixtures/block/block_align_baseline_child_top.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_align_baseline_child_top2.html b/test_fixtures/block/block_align_baseline_child_top2.html new file mode 100644 index 000000000..3a48cdb8c --- /dev/null +++ b/test_fixtures/block/block_align_baseline_child_top2.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block_align_baseline_double_nested_child.html b/test_fixtures/block/block_align_baseline_double_nested_child.html similarity index 76% rename from test_fixtures/block_align_baseline_double_nested_child.html rename to test_fixtures/block/block_align_baseline_double_nested_child.html index 7723fa515..88541b15c 100644 --- a/test_fixtures/block_align_baseline_double_nested_child.html +++ b/test_fixtures/block/block_align_baseline_double_nested_child.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block/block_aspect_ratio_fill_height.html b/test_fixtures/block/block_aspect_ratio_fill_height.html new file mode 100644 index 000000000..c1038ddaf --- /dev/null +++ b/test_fixtures/block/block_aspect_ratio_fill_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_aspect_ratio_fill_max_height.html b/test_fixtures/block/block_aspect_ratio_fill_max_height.html new file mode 100644 index 000000000..6815103b7 --- /dev/null +++ b/test_fixtures/block/block_aspect_ratio_fill_max_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH​HH​HH​HH​HH​HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_aspect_ratio_fill_max_width.html b/test_fixtures/block/block_aspect_ratio_fill_max_width.html new file mode 100644 index 000000000..17eb820cb --- /dev/null +++ b/test_fixtures/block/block_aspect_ratio_fill_max_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_aspect_ratio_fill_min_height.html b/test_fixtures/block/block_aspect_ratio_fill_min_height.html new file mode 100644 index 000000000..2b6dcb5b7 --- /dev/null +++ b/test_fixtures/block/block_aspect_ratio_fill_min_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_aspect_ratio_fill_min_width.html b/test_fixtures/block/block_aspect_ratio_fill_min_width.html new file mode 100644 index 000000000..0581c0a71 --- /dev/null +++ b/test_fixtures/block/block_aspect_ratio_fill_min_width.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+ +
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_aspect_ratio_fill_width.html b/test_fixtures/block/block_aspect_ratio_fill_width.html new file mode 100644 index 000000000..f425b0d73 --- /dev/null +++ b/test_fixtures/block/block_aspect_ratio_fill_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_basic.html b/test_fixtures/block/block_basic.html new file mode 100644 index 000000000..213afe51a --- /dev/null +++ b/test_fixtures/block/block_basic.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_border_fixed_size.html b/test_fixtures/block/block_border_fixed_size.html new file mode 100644 index 000000000..ffe5b1ff7 --- /dev/null +++ b/test_fixtures/block/block_border_fixed_size.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_border_intrinsic_size.html b/test_fixtures/block/block_border_intrinsic_size.html new file mode 100644 index 000000000..e8738a3a6 --- /dev/null +++ b/test_fixtures/block/block_border_intrinsic_size.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_border_percentage_fixed_size.html b/test_fixtures/block/block_border_percentage_fixed_size.html new file mode 100644 index 000000000..1ad670658 --- /dev/null +++ b/test_fixtures/block/block_border_percentage_fixed_size.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_border_percentage_intrinsic_size.html b/test_fixtures/block/block_border_percentage_intrinsic_size.html new file mode 100644 index 000000000..be1a834fc --- /dev/null +++ b/test_fixtures/block/block_border_percentage_intrinsic_size.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_display_none.html b/test_fixtures/block/block_display_none.html new file mode 100644 index 000000000..3251e8643 --- /dev/null +++ b/test_fixtures/block/block_display_none.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_display_none_with_child.html b/test_fixtures/block/block_display_none_with_child.html new file mode 100644 index 000000000..33edb7626 --- /dev/null +++ b/test_fixtures/block/block_display_none_with_child.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_display_none_with_inset.html b/test_fixtures/block/block_display_none_with_inset.html new file mode 100644 index 000000000..38625440d --- /dev/null +++ b/test_fixtures/block/block_display_none_with_inset.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_display_none_with_margin.html b/test_fixtures/block/block_display_none_with_margin.html new file mode 100644 index 000000000..eb1b7a37b --- /dev/null +++ b/test_fixtures/block/block_display_none_with_margin.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_display_none_with_position_absolute.html b/test_fixtures/block/block_display_none_with_position_absolute.html new file mode 100644 index 000000000..2687d599c --- /dev/null +++ b/test_fixtures/block/block_display_none_with_position_absolute.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_inset_fixed.html b/test_fixtures/block/block_inset_fixed.html new file mode 100644 index 000000000..7e95c6c7e --- /dev/null +++ b/test_fixtures/block/block_inset_fixed.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_inset_percentage.html b/test_fixtures/block/block_inset_percentage.html new file mode 100644 index 000000000..84c7a29ad --- /dev/null +++ b/test_fixtures/block/block_inset_percentage.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_intrinsic_width.html b/test_fixtures/block/block_intrinsic_width.html new file mode 100644 index 000000000..73e882730 --- /dev/null +++ b/test_fixtures/block/block_intrinsic_width.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_auto_bottom.html b/test_fixtures/block/block_margin_auto_bottom.html new file mode 100644 index 000000000..ecaa81541 --- /dev/null +++ b/test_fixtures/block/block_margin_auto_bottom.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_auto_bottom_and_top.html b/test_fixtures/block/block_margin_auto_bottom_and_top.html new file mode 100644 index 000000000..ca9f26aa3 --- /dev/null +++ b/test_fixtures/block/block_margin_auto_bottom_and_top.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_auto_left.html b/test_fixtures/block/block_margin_auto_left.html new file mode 100644 index 000000000..22fd03722 --- /dev/null +++ b/test_fixtures/block/block_margin_auto_left.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_auto_left_and_right.html b/test_fixtures/block/block_margin_auto_left_and_right.html new file mode 100644 index 000000000..0f5ae08cc --- /dev/null +++ b/test_fixtures/block/block_margin_auto_left_and_right.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_auto_left_child_bigger_than_parent.html b/test_fixtures/block/block_margin_auto_left_child_bigger_than_parent.html new file mode 100644 index 000000000..2a1142ead --- /dev/null +++ b/test_fixtures/block/block_margin_auto_left_child_bigger_than_parent.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_auto_left_fix_right_child_bigger_than_parent.html b/test_fixtures/block/block_margin_auto_left_fix_right_child_bigger_than_parent.html new file mode 100644 index 000000000..c3be12ef3 --- /dev/null +++ b/test_fixtures/block/block_margin_auto_left_fix_right_child_bigger_than_parent.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_auto_left_right_child_bigger_than_parent.html b/test_fixtures/block/block_margin_auto_left_right_child_bigger_than_parent.html new file mode 100644 index 000000000..33d95d9ab --- /dev/null +++ b/test_fixtures/block/block_margin_auto_left_right_child_bigger_than_parent.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_auto_mutiple_children.html b/test_fixtures/block/block_margin_auto_mutiple_children.html new file mode 100644 index 000000000..e75aa095c --- /dev/null +++ b/test_fixtures/block/block_margin_auto_mutiple_children.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_auto_right.html b/test_fixtures/block/block_margin_auto_right.html new file mode 100644 index 000000000..5ca3b65ed --- /dev/null +++ b/test_fixtures/block/block_margin_auto_right.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_auto_top.html b/test_fixtures/block/block_margin_auto_top.html new file mode 100644 index 000000000..a2c4e3954 --- /dev/null +++ b/test_fixtures/block/block_margin_auto_top.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_fixed_auto_bottom.html b/test_fixtures/block/block_margin_x_fixed_auto_bottom.html new file mode 100644 index 000000000..07abbe3dc --- /dev/null +++ b/test_fixtures/block/block_margin_x_fixed_auto_bottom.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_fixed_auto_left.html b/test_fixtures/block/block_margin_x_fixed_auto_left.html new file mode 100644 index 000000000..5185479a3 --- /dev/null +++ b/test_fixtures/block/block_margin_x_fixed_auto_left.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_fixed_auto_left_and_right.html b/test_fixtures/block/block_margin_x_fixed_auto_left_and_right.html new file mode 100644 index 000000000..695460eef --- /dev/null +++ b/test_fixtures/block/block_margin_x_fixed_auto_left_and_right.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_fixed_auto_right.html b/test_fixtures/block/block_margin_x_fixed_auto_right.html new file mode 100644 index 000000000..e54acecb3 --- /dev/null +++ b/test_fixtures/block/block_margin_x_fixed_auto_right.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_fixed_auto_top.html b/test_fixtures/block/block_margin_x_fixed_auto_top.html new file mode 100644 index 000000000..1796c0f95 --- /dev/null +++ b/test_fixtures/block/block_margin_x_fixed_auto_top.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_fixed_size_negative.html b/test_fixtures/block/block_margin_x_fixed_size_negative.html new file mode 100644 index 000000000..4d90d7fff --- /dev/null +++ b/test_fixtures/block/block_margin_x_fixed_size_negative.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_fixed_size_positive.html b/test_fixtures/block/block_margin_x_fixed_size_positive.html new file mode 100644 index 000000000..e2104c736 --- /dev/null +++ b/test_fixtures/block/block_margin_x_fixed_size_positive.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_intrinsic_size_negative.html b/test_fixtures/block/block_margin_x_intrinsic_size_negative.html new file mode 100644 index 000000000..ef315e310 --- /dev/null +++ b/test_fixtures/block/block_margin_x_intrinsic_size_negative.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_intrinsic_size_positive.html b/test_fixtures/block/block_margin_x_intrinsic_size_positive.html new file mode 100644 index 000000000..6da3c73c0 --- /dev/null +++ b/test_fixtures/block/block_margin_x_intrinsic_size_positive.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_percentage_fixed_size_negative.html b/test_fixtures/block/block_margin_x_percentage_fixed_size_negative.html new file mode 100644 index 000000000..d60985cf4 --- /dev/null +++ b/test_fixtures/block/block_margin_x_percentage_fixed_size_negative.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_percentage_fixed_size_positive.html b/test_fixtures/block/block_margin_x_percentage_fixed_size_positive.html new file mode 100644 index 000000000..d9537d5cb --- /dev/null +++ b/test_fixtures/block/block_margin_x_percentage_fixed_size_positive.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_percentage_intrinsic_size_other_negative.html b/test_fixtures/block/block_margin_x_percentage_intrinsic_size_other_negative.html new file mode 100644 index 000000000..2ba5187f0 --- /dev/null +++ b/test_fixtures/block/block_margin_x_percentage_intrinsic_size_other_negative.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_percentage_intrinsic_size_other_positive.html b/test_fixtures/block/block_margin_x_percentage_intrinsic_size_other_positive.html new file mode 100644 index 000000000..deb5e85ab --- /dev/null +++ b/test_fixtures/block/block_margin_x_percentage_intrinsic_size_other_positive.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_percentage_intrinsic_size_self_negative.html b/test_fixtures/block/block_margin_x_percentage_intrinsic_size_self_negative.html new file mode 100644 index 000000000..37d57fe59 --- /dev/null +++ b/test_fixtures/block/block_margin_x_percentage_intrinsic_size_self_negative.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_x_percentage_intrinsic_size_self_positive.html b/test_fixtures/block/block_margin_x_percentage_intrinsic_size_self_positive.html new file mode 100644 index 000000000..62994430d --- /dev/null +++ b/test_fixtures/block/block_margin_x_percentage_intrinsic_size_self_positive.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_complex.html b/test_fixtures/block/block_margin_y_collapse_complex.html similarity index 82% rename from test_fixtures/block_margin_y_collapse_complex.html rename to test_fixtures/block/block_margin_y_collapse_complex.html index edc80a557..b01a80660 100644 --- a/test_fixtures/block_margin_y_collapse_complex.html +++ b/test_fixtures/block/block_margin_y_collapse_complex.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_aspect_ratio.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_aspect_ratio.html new file mode 100644 index 000000000..c410a994d --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_aspect_ratio.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_border_bottom.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_border_bottom.html new file mode 100644 index 000000000..7c0083050 --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_border_bottom.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_border_top.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_border_top.html new file mode 100644 index 000000000..f0a5555c3 --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_border_top.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_height.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_height.html new file mode 100644 index 000000000..43daa5f6a --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_height.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_line_box.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_line_box.html new file mode 100644 index 000000000..d4d558c0b --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_line_box.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_line_box_with_height_zero.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_line_box_with_height_zero.html new file mode 100644 index 000000000..800074cfe --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_line_box_with_height_zero.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero.html new file mode 100644 index 000000000..7b7d00a78 --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_min_height.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_min_height.html new file mode 100644 index 000000000..99af49f1a --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_min_height.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_overflow_x_hidden.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_overflow_x_hidden.html new file mode 100644 index 000000000..60fdaf500 --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_overflow_x_hidden.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_overflow_x_scroll.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_overflow_x_scroll.html new file mode 100644 index 000000000..5c280fc6a --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_overflow_x_scroll.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_overflow_y_hidden.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_overflow_y_hidden.html new file mode 100644 index 000000000..2fb2da923 --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_overflow_y_hidden.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_overflow_y_scroll.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_overflow_y_scroll.html new file mode 100644 index 000000000..3f174d4de --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_overflow_y_scroll.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_padding_bottom.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_padding_bottom.html new file mode 100644 index 000000000..aa7949261 --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_padding_bottom.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_blocked_by_padding_top.html b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_padding_top.html new file mode 100644 index 000000000..fa28157fc --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_blocked_by_padding_top.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_negative.html b/test_fixtures/block/block_margin_y_collapse_through_negative.html new file mode 100644 index 000000000..c03a013fb --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_negative.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_positive.html b/test_fixtures/block/block_margin_y_collapse_through_positive.html new file mode 100644 index 000000000..f4f329302 --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_positive.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_positive_and_negative.html b/test_fixtures/block/block_margin_y_collapse_through_positive_and_negative.html new file mode 100644 index 000000000..4bc34b610 --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_positive_and_negative.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_collapse_through_with_absolute_child.html b/test_fixtures/block/block_margin_y_collapse_through_with_absolute_child.html new file mode 100644 index 000000000..7ee18d759 --- /dev/null +++ b/test_fixtures/block/block_margin_y_collapse_through_with_absolute_child.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_border_top.html b/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_border_top.html new file mode 100644 index 000000000..9dbe6ffdb --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_border_top.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_overflow_x_hidden.html b/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_overflow_x_hidden.html new file mode 100644 index 000000000..352330008 --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_overflow_x_hidden.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_overflow_x_scroll.html b/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_overflow_x_scroll.html new file mode 100644 index 000000000..55f20dc05 --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_overflow_x_scroll.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_overflow_y_hidden.html b/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_overflow_y_hidden.html new file mode 100644 index 000000000..a178d29ba --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_overflow_y_hidden.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_overflow_y_scroll.html b/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_overflow_y_scroll.html new file mode 100644 index 000000000..7da7762e6 --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_overflow_y_scroll.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_padding_top.html b/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_padding_top.html new file mode 100644 index 000000000..460d6c7ea --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_blocked_by_padding_top.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_negative_equal.html b/test_fixtures/block/block_margin_y_first_child_collapse_negative_equal.html new file mode 100644 index 000000000..11009f5fc --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_negative_equal.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_negative_parent_larger.html b/test_fixtures/block/block_margin_y_first_child_collapse_negative_parent_larger.html new file mode 100644 index 000000000..ed418b50b --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_negative_parent_larger.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_negative_parent_smaller.html b/test_fixtures/block/block_margin_y_first_child_collapse_negative_parent_smaller.html new file mode 100644 index 000000000..d7cd0745a --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_negative_parent_smaller.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_not_blocked_by_border_bottom.html b/test_fixtures/block/block_margin_y_first_child_collapse_not_blocked_by_border_bottom.html new file mode 100644 index 000000000..a078a09b1 --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_not_blocked_by_border_bottom.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_not_blocked_by_padding_bottom.html b/test_fixtures/block/block_margin_y_first_child_collapse_not_blocked_by_padding_bottom.html new file mode 100644 index 000000000..5da25931f --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_not_blocked_by_padding_bottom.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_positive_and_negative.html b/test_fixtures/block/block_margin_y_first_child_collapse_positive_and_negative.html similarity index 81% rename from test_fixtures/block_margin_y_first_child_collapse_positive_and_negative.html rename to test_fixtures/block/block_margin_y_first_child_collapse_positive_and_negative.html index a201b6de1..ecb9a0ca9 100644 --- a/test_fixtures/block_margin_y_first_child_collapse_positive_and_negative.html +++ b/test_fixtures/block/block_margin_y_first_child_collapse_positive_and_negative.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_positive_equal.html b/test_fixtures/block/block_margin_y_first_child_collapse_positive_equal.html new file mode 100644 index 000000000..258303aa8 --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_positive_equal.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_positive_parent_larger.html b/test_fixtures/block/block_margin_y_first_child_collapse_positive_parent_larger.html new file mode 100644 index 000000000..cb05919ac --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_positive_parent_larger.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_first_child_collapse_positive_parent_smaller.html b/test_fixtures/block/block_margin_y_first_child_collapse_positive_parent_smaller.html new file mode 100644 index 000000000..689026ff3 --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_child_collapse_positive_parent_smaller.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_granchild_collapse_positive_and_negative.html b/test_fixtures/block/block_margin_y_first_granchild_collapse_positive_and_negative.html similarity index 85% rename from test_fixtures/block_margin_y_first_granchild_collapse_positive_and_negative.html rename to test_fixtures/block/block_margin_y_first_granchild_collapse_positive_and_negative.html index 8add46eae..bc79a2eb0 100644 --- a/test_fixtures/block_margin_y_first_granchild_collapse_positive_and_negative.html +++ b/test_fixtures/block/block_margin_y_first_granchild_collapse_positive_and_negative.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block/block_margin_y_first_granchild_collapse_positive_equal.html b/test_fixtures/block/block_margin_y_first_granchild_collapse_positive_equal.html new file mode 100644 index 000000000..253541137 --- /dev/null +++ b/test_fixtures/block/block_margin_y_first_granchild_collapse_positive_equal.html @@ -0,0 +1,23 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_border_bottom.html b/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_border_bottom.html new file mode 100644 index 000000000..819090a33 --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_border_bottom.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_overflow_x_hidden.html b/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_overflow_x_hidden.html new file mode 100644 index 000000000..7d61ac9c9 --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_overflow_x_hidden.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_overflow_x_scroll.html b/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_overflow_x_scroll.html new file mode 100644 index 000000000..d1ba3ac82 --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_overflow_x_scroll.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_overflow_y_hidden.html b/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_overflow_y_hidden.html new file mode 100644 index 000000000..d5a629472 --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_overflow_y_hidden.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_overflow_y_scroll.html b/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_overflow_y_scroll.html new file mode 100644 index 000000000..d48eee9b7 --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_overflow_y_scroll.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_padding_bottom.html b/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_padding_bottom.html new file mode 100644 index 000000000..4aa96e138 --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_blocked_by_padding_bottom.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_negative_equal.html b/test_fixtures/block/block_margin_y_last_child_collapse_negative_equal.html new file mode 100644 index 000000000..8f5a6fd0d --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_negative_equal.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_negative_parent_larger.html b/test_fixtures/block/block_margin_y_last_child_collapse_negative_parent_larger.html new file mode 100644 index 000000000..7e3eb39cb --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_negative_parent_larger.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_negative_parent_smaller.html b/test_fixtures/block/block_margin_y_last_child_collapse_negative_parent_smaller.html new file mode 100644 index 000000000..6b6d1343d --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_negative_parent_smaller.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_not_blocked_by_border_top.html b/test_fixtures/block/block_margin_y_last_child_collapse_not_blocked_by_border_top.html new file mode 100644 index 000000000..53dd49307 --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_not_blocked_by_border_top.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_not_blocked_by_padding_top.html b/test_fixtures/block/block_margin_y_last_child_collapse_not_blocked_by_padding_top.html new file mode 100644 index 000000000..5a77fdb26 --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_not_blocked_by_padding_top.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_positive_and_negative.html b/test_fixtures/block/block_margin_y_last_child_collapse_positive_and_negative.html similarity index 81% rename from test_fixtures/block_margin_y_last_child_collapse_positive_and_negative.html rename to test_fixtures/block/block_margin_y_last_child_collapse_positive_and_negative.html index 041aa4c6f..d2f39ac87 100644 --- a/test_fixtures/block_margin_y_last_child_collapse_positive_and_negative.html +++ b/test_fixtures/block/block_margin_y_last_child_collapse_positive_and_negative.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_positive_equal.html b/test_fixtures/block/block_margin_y_last_child_collapse_positive_equal.html new file mode 100644 index 000000000..64fc1897d --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_positive_equal.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_positive_parent_larger.html b/test_fixtures/block/block_margin_y_last_child_collapse_positive_parent_larger.html new file mode 100644 index 000000000..6ed56c56b --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_positive_parent_larger.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_child_collapse_positive_parent_smaller.html b/test_fixtures/block/block_margin_y_last_child_collapse_positive_parent_smaller.html new file mode 100644 index 000000000..8188fd565 --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_child_collapse_positive_parent_smaller.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_last_granchild_collapse_positive_equal.html b/test_fixtures/block/block_margin_y_last_granchild_collapse_positive_equal.html new file mode 100644 index 000000000..599174b3e --- /dev/null +++ b/test_fixtures/block/block_margin_y_last_granchild_collapse_positive_equal.html @@ -0,0 +1,23 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block_margin_y_sibling_collapse_negative.html b/test_fixtures/block/block_margin_y_sibling_collapse_negative.html similarity index 75% rename from test_fixtures/block_margin_y_sibling_collapse_negative.html rename to test_fixtures/block/block_margin_y_sibling_collapse_negative.html index 62659d161..323c8bef4 100644 --- a/test_fixtures/block_margin_y_sibling_collapse_negative.html +++ b/test_fixtures/block/block_margin_y_sibling_collapse_negative.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block_margin_y_sibling_collapse_negative_percentage.html b/test_fixtures/block/block_margin_y_sibling_collapse_negative_percentage.html similarity index 75% rename from test_fixtures/block_margin_y_sibling_collapse_negative_percentage.html rename to test_fixtures/block/block_margin_y_sibling_collapse_negative_percentage.html index e9f936e8d..117f1d036 100644 --- a/test_fixtures/block_margin_y_sibling_collapse_negative_percentage.html +++ b/test_fixtures/block/block_margin_y_sibling_collapse_negative_percentage.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block_margin_y_sibling_collapse_positive.html b/test_fixtures/block/block_margin_y_sibling_collapse_positive.html similarity index 75% rename from test_fixtures/block_margin_y_sibling_collapse_positive.html rename to test_fixtures/block/block_margin_y_sibling_collapse_positive.html index 19cb2a05d..fdeb0f09d 100644 --- a/test_fixtures/block_margin_y_sibling_collapse_positive.html +++ b/test_fixtures/block/block_margin_y_sibling_collapse_positive.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block_margin_y_sibling_collapse_positive_and_negative.html b/test_fixtures/block/block_margin_y_sibling_collapse_positive_and_negative.html similarity index 82% rename from test_fixtures/block_margin_y_sibling_collapse_positive_and_negative.html rename to test_fixtures/block/block_margin_y_sibling_collapse_positive_and_negative.html index 6341a1cc2..164dcb835 100644 --- a/test_fixtures/block_margin_y_sibling_collapse_positive_and_negative.html +++ b/test_fixtures/block/block_margin_y_sibling_collapse_positive_and_negative.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block_margin_y_sibling_collapse_positive_and_negative_percentage.html b/test_fixtures/block/block_margin_y_sibling_collapse_positive_and_negative_percentage.html similarity index 81% rename from test_fixtures/block_margin_y_sibling_collapse_positive_and_negative_percentage.html rename to test_fixtures/block/block_margin_y_sibling_collapse_positive_and_negative_percentage.html index 74c42debf..141f6f827 100644 --- a/test_fixtures/block_margin_y_sibling_collapse_positive_and_negative_percentage.html +++ b/test_fixtures/block/block_margin_y_sibling_collapse_positive_and_negative_percentage.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block_margin_y_sibling_collapse_positive_percentage.html b/test_fixtures/block/block_margin_y_sibling_collapse_positive_percentage.html similarity index 75% rename from test_fixtures/block_margin_y_sibling_collapse_positive_percentage.html rename to test_fixtures/block/block_margin_y_sibling_collapse_positive_percentage.html index ed1bdc7bd..b0fe974b6 100644 --- a/test_fixtures/block_margin_y_sibling_collapse_positive_percentage.html +++ b/test_fixtures/block/block_margin_y_sibling_collapse_positive_percentage.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block/block_margin_y_simple_negative.html b/test_fixtures/block/block_margin_y_simple_negative.html new file mode 100644 index 000000000..6d235bbd6 --- /dev/null +++ b/test_fixtures/block/block_margin_y_simple_negative.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_simple_negative_percentage_other.html b/test_fixtures/block/block_margin_y_simple_negative_percentage_other.html new file mode 100644 index 000000000..411c34991 --- /dev/null +++ b/test_fixtures/block/block_margin_y_simple_negative_percentage_other.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_simple_negative_percentage_self.html b/test_fixtures/block/block_margin_y_simple_negative_percentage_self.html new file mode 100644 index 000000000..07ed4bf39 --- /dev/null +++ b/test_fixtures/block/block_margin_y_simple_negative_percentage_self.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_simple_positive.html b/test_fixtures/block/block_margin_y_simple_positive.html new file mode 100644 index 000000000..64f65c3e1 --- /dev/null +++ b/test_fixtures/block/block_margin_y_simple_positive.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_simple_positive_percentage_other.html b/test_fixtures/block/block_margin_y_simple_positive_percentage_other.html new file mode 100644 index 000000000..368f8ec90 --- /dev/null +++ b/test_fixtures/block/block_margin_y_simple_positive_percentage_other.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_margin_y_simple_positive_percentage_self.html b/test_fixtures/block/block_margin_y_simple_positive_percentage_self.html new file mode 100644 index 000000000..f87d2323a --- /dev/null +++ b/test_fixtures/block/block_margin_y_simple_positive_percentage_self.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block_margin_y_total_collapse.html b/test_fixtures/block/block_margin_y_total_collapse.html similarity index 76% rename from test_fixtures/block_margin_y_total_collapse.html rename to test_fixtures/block/block_margin_y_total_collapse.html index 43c02744c..c4ffa96c3 100644 --- a/test_fixtures/block_margin_y_total_collapse.html +++ b/test_fixtures/block/block_margin_y_total_collapse.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block_margin_y_total_collapse_complex.html b/test_fixtures/block/block_margin_y_total_collapse_complex.html similarity index 82% rename from test_fixtures/block_margin_y_total_collapse_complex.html rename to test_fixtures/block/block_margin_y_total_collapse_complex.html index edc80a557..b01a80660 100644 --- a/test_fixtures/block_margin_y_total_collapse_complex.html +++ b/test_fixtures/block/block_margin_y_total_collapse_complex.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/block/block_overflow_scrollbars_overriden_by_available_space.html b/test_fixtures/block/block_overflow_scrollbars_overriden_by_available_space.html new file mode 100644 index 000000000..ab518297a --- /dev/null +++ b/test_fixtures/block/block_overflow_scrollbars_overriden_by_available_space.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_overflow_scrollbars_overriden_by_max_size.html b/test_fixtures/block/block_overflow_scrollbars_overriden_by_max_size.html new file mode 100644 index 000000000..6e66789d4 --- /dev/null +++ b/test_fixtures/block/block_overflow_scrollbars_overriden_by_max_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_overflow_scrollbars_overriden_by_size.html b/test_fixtures/block/block_overflow_scrollbars_overriden_by_size.html new file mode 100644 index 000000000..9315dce3b --- /dev/null +++ b/test_fixtures/block/block_overflow_scrollbars_overriden_by_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_overflow_scrollbars_take_up_space_both_axis.html b/test_fixtures/block/block_overflow_scrollbars_take_up_space_both_axis.html new file mode 100644 index 000000000..cd803415b --- /dev/null +++ b/test_fixtures/block/block_overflow_scrollbars_take_up_space_both_axis.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_overflow_scrollbars_take_up_space_cross_axis.html b/test_fixtures/block/block_overflow_scrollbars_take_up_space_cross_axis.html new file mode 100644 index 000000000..bc1dd0c48 --- /dev/null +++ b/test_fixtures/block/block_overflow_scrollbars_take_up_space_cross_axis.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_overflow_scrollbars_take_up_space_main_axis.html b/test_fixtures/block/block_overflow_scrollbars_take_up_space_main_axis.html new file mode 100644 index 000000000..19ddbd38e --- /dev/null +++ b/test_fixtures/block/block_overflow_scrollbars_take_up_space_main_axis.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_padding_border_fixed_size.html b/test_fixtures/block/block_padding_border_fixed_size.html new file mode 100644 index 000000000..00dc75781 --- /dev/null +++ b/test_fixtures/block/block_padding_border_fixed_size.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_padding_border_intrinsic_size.html b/test_fixtures/block/block_padding_border_intrinsic_size.html new file mode 100644 index 000000000..541d42c03 --- /dev/null +++ b/test_fixtures/block/block_padding_border_intrinsic_size.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_padding_border_overrides_max_size.html b/test_fixtures/block/block_padding_border_overrides_max_size.html new file mode 100644 index 000000000..0b88fd2e2 --- /dev/null +++ b/test_fixtures/block/block_padding_border_overrides_max_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_padding_border_overrides_min_size.html b/test_fixtures/block/block_padding_border_overrides_min_size.html new file mode 100644 index 000000000..94e98adc3 --- /dev/null +++ b/test_fixtures/block/block_padding_border_overrides_min_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_padding_border_overrides_size.html b/test_fixtures/block/block_padding_border_overrides_size.html new file mode 100644 index 000000000..327700371 --- /dev/null +++ b/test_fixtures/block/block_padding_border_overrides_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_padding_border_percentage_fixed_size.html b/test_fixtures/block/block_padding_border_percentage_fixed_size.html new file mode 100644 index 000000000..257b0e7d6 --- /dev/null +++ b/test_fixtures/block/block_padding_border_percentage_fixed_size.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_padding_border_percentage_intrinsic_size.html b/test_fixtures/block/block_padding_border_percentage_intrinsic_size.html new file mode 100644 index 000000000..4c27a3bf1 --- /dev/null +++ b/test_fixtures/block/block_padding_border_percentage_intrinsic_size.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_padding_fixed_size.html b/test_fixtures/block/block_padding_fixed_size.html new file mode 100644 index 000000000..3cd27a652 --- /dev/null +++ b/test_fixtures/block/block_padding_fixed_size.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_padding_intrinsic_size.html b/test_fixtures/block/block_padding_intrinsic_size.html new file mode 100644 index 000000000..176c40c4e --- /dev/null +++ b/test_fixtures/block/block_padding_intrinsic_size.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_padding_percentage_fixed_size.html b/test_fixtures/block/block_padding_percentage_fixed_size.html new file mode 100644 index 000000000..cc50c0123 --- /dev/null +++ b/test_fixtures/block/block_padding_percentage_fixed_size.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block/block_padding_percentage_intrinsic_size.html b/test_fixtures/block/block_padding_percentage_intrinsic_size.html new file mode 100644 index 000000000..df90eb68b --- /dev/null +++ b/test_fixtures/block/block_padding_percentage_intrinsic_size.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/block_absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.html b/test_fixtures/block_absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.html deleted file mode 100644 index 46792dd5f..000000000 --- a/test_fixtures/block_absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_aspect_ratio_fill_height.html b/test_fixtures/block_absolute_aspect_ratio_fill_height.html deleted file mode 100644 index 0b7d82f69..000000000 --- a/test_fixtures/block_absolute_aspect_ratio_fill_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_aspect_ratio_fill_height_from_inset.html b/test_fixtures/block_absolute_aspect_ratio_fill_height_from_inset.html deleted file mode 100644 index d2a466a78..000000000 --- a/test_fixtures/block_absolute_aspect_ratio_fill_height_from_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_aspect_ratio_fill_max_height.html b/test_fixtures/block_absolute_aspect_ratio_fill_max_height.html deleted file mode 100644 index 193b4e3d3..000000000 --- a/test_fixtures/block_absolute_aspect_ratio_fill_max_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_aspect_ratio_fill_max_width.html b/test_fixtures/block_absolute_aspect_ratio_fill_max_width.html deleted file mode 100644 index 400981de7..000000000 --- a/test_fixtures/block_absolute_aspect_ratio_fill_max_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_aspect_ratio_fill_min_height.html b/test_fixtures/block_absolute_aspect_ratio_fill_min_height.html deleted file mode 100644 index 90b3e64c0..000000000 --- a/test_fixtures/block_absolute_aspect_ratio_fill_min_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_aspect_ratio_fill_min_width.html b/test_fixtures/block_absolute_aspect_ratio_fill_min_width.html deleted file mode 100644 index aef482a5d..000000000 --- a/test_fixtures/block_absolute_aspect_ratio_fill_min_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_aspect_ratio_fill_width.html b/test_fixtures/block_absolute_aspect_ratio_fill_width.html deleted file mode 100644 index e343818a7..000000000 --- a/test_fixtures/block_absolute_aspect_ratio_fill_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_aspect_ratio_fill_width_from_inset.html b/test_fixtures/block_absolute_aspect_ratio_fill_width_from_inset.html deleted file mode 100644 index 401d6aff1..000000000 --- a/test_fixtures/block_absolute_aspect_ratio_fill_width_from_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_aspect_ratio_height_overrides_inset.html b/test_fixtures/block_absolute_aspect_ratio_height_overrides_inset.html deleted file mode 100644 index 77ef872e7..000000000 --- a/test_fixtures/block_absolute_aspect_ratio_height_overrides_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_aspect_ratio_width_overrides_inset.html b/test_fixtures/block_absolute_aspect_ratio_width_overrides_inset.html deleted file mode 100644 index a5da2abd2..000000000 --- a/test_fixtures/block_absolute_aspect_ratio_width_overrides_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_child_with_max_height.html b/test_fixtures/block_absolute_child_with_max_height.html deleted file mode 100644 index a21a0a752..000000000 --- a/test_fixtures/block_absolute_child_with_max_height.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_layout_child_order.html b/test_fixtures/block_absolute_layout_child_order.html deleted file mode 100644 index 31d45d1f6..000000000 --- a/test_fixtures/block_absolute_layout_child_order.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_layout_no_size.html b/test_fixtures/block_absolute_layout_no_size.html deleted file mode 100644 index 10d061ca3..000000000 --- a/test_fixtures/block_absolute_layout_no_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_layout_percentage_height.html b/test_fixtures/block_absolute_layout_percentage_height.html deleted file mode 100644 index d6aef736a..000000000 --- a/test_fixtures/block_absolute_layout_percentage_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_layout_row_width_height_end_bottom.html b/test_fixtures/block_absolute_layout_row_width_height_end_bottom.html deleted file mode 100644 index 08aeaf125..000000000 --- a/test_fixtures/block_absolute_layout_row_width_height_end_bottom.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_layout_start_top_end_bottom.html b/test_fixtures/block_absolute_layout_start_top_end_bottom.html deleted file mode 100644 index 62c13ac8b..000000000 --- a/test_fixtures/block_absolute_layout_start_top_end_bottom.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_layout_width_height_end_bottom.html b/test_fixtures/block_absolute_layout_width_height_end_bottom.html deleted file mode 100644 index 4265bf898..000000000 --- a/test_fixtures/block_absolute_layout_width_height_end_bottom.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_layout_width_height_start_top.html b/test_fixtures/block_absolute_layout_width_height_start_top.html deleted file mode 100644 index a4e896795..000000000 --- a/test_fixtures/block_absolute_layout_width_height_start_top.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_layout_width_height_start_top_end_bottom.html b/test_fixtures/block_absolute_layout_width_height_start_top_end_bottom.html deleted file mode 100644 index ed42b0080..000000000 --- a/test_fixtures/block_absolute_layout_width_height_start_top_end_bottom.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_bottom_and_top_with_inset.html b/test_fixtures/block_absolute_margin_auto_bottom_and_top_with_inset.html deleted file mode 100644 index 4b25ca40c..000000000 --- a/test_fixtures/block_absolute_margin_auto_bottom_and_top_with_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_bottom_and_top_without_inset.html b/test_fixtures/block_absolute_margin_auto_bottom_and_top_without_inset.html deleted file mode 100644 index b88241e1b..000000000 --- a/test_fixtures/block_absolute_margin_auto_bottom_and_top_without_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_bottom_with_inset.html b/test_fixtures/block_absolute_margin_auto_bottom_with_inset.html deleted file mode 100644 index 0ddbf462f..000000000 --- a/test_fixtures/block_absolute_margin_auto_bottom_with_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_bottom_without_inset.html b/test_fixtures/block_absolute_margin_auto_bottom_without_inset.html deleted file mode 100644 index 72bbd93c8..000000000 --- a/test_fixtures/block_absolute_margin_auto_bottom_without_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_left_and_right_with_inset.html b/test_fixtures/block_absolute_margin_auto_left_and_right_with_inset.html deleted file mode 100644 index 87339dfde..000000000 --- a/test_fixtures/block_absolute_margin_auto_left_and_right_with_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_left_and_right_without_inset.html b/test_fixtures/block_absolute_margin_auto_left_and_right_without_inset.html deleted file mode 100644 index cb6f44b86..000000000 --- a/test_fixtures/block_absolute_margin_auto_left_and_right_without_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_left_child_bigger_than_parent_with_inset.html b/test_fixtures/block_absolute_margin_auto_left_child_bigger_than_parent_with_inset.html deleted file mode 100644 index a03dbdb6e..000000000 --- a/test_fixtures/block_absolute_margin_auto_left_child_bigger_than_parent_with_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_left_child_bigger_than_parent_without_inset.html b/test_fixtures/block_absolute_margin_auto_left_child_bigger_than_parent_without_inset.html deleted file mode 100644 index c4b551f8a..000000000 --- a/test_fixtures/block_absolute_margin_auto_left_child_bigger_than_parent_without_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_with_inset.html b/test_fixtures/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_with_inset.html deleted file mode 100644 index 44f16da7d..000000000 --- a/test_fixtures/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_with_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_without_inset.html b/test_fixtures/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_without_inset.html deleted file mode 100644 index f841f14a7..000000000 --- a/test_fixtures/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_without_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_left_right_child_bigger_than_parent_with_inset.html b/test_fixtures/block_absolute_margin_auto_left_right_child_bigger_than_parent_with_inset.html deleted file mode 100644 index 956f0406e..000000000 --- a/test_fixtures/block_absolute_margin_auto_left_right_child_bigger_than_parent_with_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_left_right_child_bigger_than_parent_without_inset.html b/test_fixtures/block_absolute_margin_auto_left_right_child_bigger_than_parent_without_inset.html deleted file mode 100644 index 424b1a546..000000000 --- a/test_fixtures/block_absolute_margin_auto_left_right_child_bigger_than_parent_without_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_left_with_inset.html b/test_fixtures/block_absolute_margin_auto_left_with_inset.html deleted file mode 100644 index 0429268c1..000000000 --- a/test_fixtures/block_absolute_margin_auto_left_with_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_left_without_inset.html b/test_fixtures/block_absolute_margin_auto_left_without_inset.html deleted file mode 100644 index 3bef5d230..000000000 --- a/test_fixtures/block_absolute_margin_auto_left_without_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_mutiple_children_without_inset.html b/test_fixtures/block_absolute_margin_auto_mutiple_children_without_inset.html deleted file mode 100644 index 8584e7ce0..000000000 --- a/test_fixtures/block_absolute_margin_auto_mutiple_children_without_inset.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_right_with_inset.html b/test_fixtures/block_absolute_margin_auto_right_with_inset.html deleted file mode 100644 index f401b5c9c..000000000 --- a/test_fixtures/block_absolute_margin_auto_right_with_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_right_without_inset.html b/test_fixtures/block_absolute_margin_auto_right_without_inset.html deleted file mode 100644 index 2514f3772..000000000 --- a/test_fixtures/block_absolute_margin_auto_right_without_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_top_with_inset.html b/test_fixtures/block_absolute_margin_auto_top_with_inset.html deleted file mode 100644 index 6d31df985..000000000 --- a/test_fixtures/block_absolute_margin_auto_top_with_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_auto_top_without_inset.html b/test_fixtures/block_absolute_margin_auto_top_without_inset.html deleted file mode 100644 index 53010d08d..000000000 --- a/test_fixtures/block_absolute_margin_auto_top_without_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_bottom_left_with_inset.html b/test_fixtures/block_absolute_margin_bottom_left_with_inset.html deleted file mode 100644 index cf16da313..000000000 --- a/test_fixtures/block_absolute_margin_bottom_left_with_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_margin_bottom_left_without_inset.html b/test_fixtures/block_absolute_margin_bottom_left_without_inset.html deleted file mode 100644 index 36f134fe7..000000000 --- a/test_fixtures/block_absolute_margin_bottom_left_without_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_minmax_bottom_right_max.html b/test_fixtures/block_absolute_minmax_bottom_right_max.html deleted file mode 100644 index d16198943..000000000 --- a/test_fixtures/block_absolute_minmax_bottom_right_max.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_minmax_bottom_right_min_max.html b/test_fixtures/block_absolute_minmax_bottom_right_min_max.html deleted file mode 100644 index c43e8c322..000000000 --- a/test_fixtures/block_absolute_minmax_bottom_right_min_max.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_minmax_bottom_right_min_max_preferred.html b/test_fixtures/block_absolute_minmax_bottom_right_min_max_preferred.html deleted file mode 100644 index 25ec886da..000000000 --- a/test_fixtures/block_absolute_minmax_bottom_right_min_max_preferred.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_minmax_top_left_bottom_right_max.html b/test_fixtures/block_absolute_minmax_top_left_bottom_right_max.html deleted file mode 100644 index 3f6a373b4..000000000 --- a/test_fixtures/block_absolute_minmax_top_left_bottom_right_max.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_minmax_top_left_bottom_right_min_max.html b/test_fixtures/block_absolute_minmax_top_left_bottom_right_min_max.html deleted file mode 100644 index 6429e9f5d..000000000 --- a/test_fixtures/block_absolute_minmax_top_left_bottom_right_min_max.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_no_styles.html b/test_fixtures/block_absolute_no_styles.html deleted file mode 100644 index a47e976ed..000000000 --- a/test_fixtures/block_absolute_no_styles.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_padding_border_overrides_max_size.html b/test_fixtures/block_absolute_padding_border_overrides_max_size.html deleted file mode 100644 index 42ef6ffad..000000000 --- a/test_fixtures/block_absolute_padding_border_overrides_max_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_absolute_padding_border_overrides_size.html b/test_fixtures/block_absolute_padding_border_overrides_size.html deleted file mode 100644 index 13f8929c9..000000000 --- a/test_fixtures/block_absolute_padding_border_overrides_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_align_baseline_child.html b/test_fixtures/block_align_baseline_child.html deleted file mode 100644 index 712b203ec..000000000 --- a/test_fixtures/block_align_baseline_child.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_align_baseline_child_margin.html b/test_fixtures/block_align_baseline_child_margin.html deleted file mode 100644 index f24f5d79a..000000000 --- a/test_fixtures/block_align_baseline_child_margin.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_align_baseline_child_margin_percent.html b/test_fixtures/block_align_baseline_child_margin_percent.html deleted file mode 100644 index dfd6a3c30..000000000 --- a/test_fixtures/block_align_baseline_child_margin_percent.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_align_baseline_child_padding.html b/test_fixtures/block_align_baseline_child_padding.html deleted file mode 100644 index ce23b3013..000000000 --- a/test_fixtures/block_align_baseline_child_padding.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_align_baseline_child_top.html b/test_fixtures/block_align_baseline_child_top.html deleted file mode 100644 index d3f384999..000000000 --- a/test_fixtures/block_align_baseline_child_top.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_align_baseline_child_top2.html b/test_fixtures/block_align_baseline_child_top2.html deleted file mode 100644 index 315cbd3a8..000000000 --- a/test_fixtures/block_align_baseline_child_top2.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_aspect_ratio_fill_height.html b/test_fixtures/block_aspect_ratio_fill_height.html deleted file mode 100644 index 364635a99..000000000 --- a/test_fixtures/block_aspect_ratio_fill_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_aspect_ratio_fill_max_height.html b/test_fixtures/block_aspect_ratio_fill_max_height.html deleted file mode 100644 index 28a9fdd53..000000000 --- a/test_fixtures/block_aspect_ratio_fill_max_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH​HH​HH​HH​HH​HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_aspect_ratio_fill_max_width.html b/test_fixtures/block_aspect_ratio_fill_max_width.html deleted file mode 100644 index 58e027605..000000000 --- a/test_fixtures/block_aspect_ratio_fill_max_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_aspect_ratio_fill_min_height.html b/test_fixtures/block_aspect_ratio_fill_min_height.html deleted file mode 100644 index 3d75cf2fe..000000000 --- a/test_fixtures/block_aspect_ratio_fill_min_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_aspect_ratio_fill_min_width.html b/test_fixtures/block_aspect_ratio_fill_min_width.html deleted file mode 100644 index a27d2ec8f..000000000 --- a/test_fixtures/block_aspect_ratio_fill_min_width.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
- -
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_aspect_ratio_fill_width.html b/test_fixtures/block_aspect_ratio_fill_width.html deleted file mode 100644 index 97f9bc834..000000000 --- a/test_fixtures/block_aspect_ratio_fill_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_basic.html b/test_fixtures/block_basic.html deleted file mode 100644 index bc37b06f9..000000000 --- a/test_fixtures/block_basic.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_border_fixed_size.html b/test_fixtures/block_border_fixed_size.html deleted file mode 100644 index e968e9290..000000000 --- a/test_fixtures/block_border_fixed_size.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_border_intrinsic_size.html b/test_fixtures/block_border_intrinsic_size.html deleted file mode 100644 index 5ff4bf916..000000000 --- a/test_fixtures/block_border_intrinsic_size.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_border_percentage_fixed_size.html b/test_fixtures/block_border_percentage_fixed_size.html deleted file mode 100644 index 54a087d2b..000000000 --- a/test_fixtures/block_border_percentage_fixed_size.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_border_percentage_intrinsic_size.html b/test_fixtures/block_border_percentage_intrinsic_size.html deleted file mode 100644 index 24f62de6a..000000000 --- a/test_fixtures/block_border_percentage_intrinsic_size.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_display_none.html b/test_fixtures/block_display_none.html deleted file mode 100644 index 7fba090ba..000000000 --- a/test_fixtures/block_display_none.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_display_none_with_child.html b/test_fixtures/block_display_none_with_child.html deleted file mode 100644 index 3b5075ba5..000000000 --- a/test_fixtures/block_display_none_with_child.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_display_none_with_inset.html b/test_fixtures/block_display_none_with_inset.html deleted file mode 100644 index 7eca16746..000000000 --- a/test_fixtures/block_display_none_with_inset.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_display_none_with_margin.html b/test_fixtures/block_display_none_with_margin.html deleted file mode 100644 index fa50c2166..000000000 --- a/test_fixtures/block_display_none_with_margin.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_display_none_with_position_absolute.html b/test_fixtures/block_display_none_with_position_absolute.html deleted file mode 100644 index 8d39f9cde..000000000 --- a/test_fixtures/block_display_none_with_position_absolute.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_inset_fixed.html b/test_fixtures/block_inset_fixed.html deleted file mode 100644 index 7955d9e53..000000000 --- a/test_fixtures/block_inset_fixed.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_inset_percentage.html b/test_fixtures/block_inset_percentage.html deleted file mode 100644 index e412cffe4..000000000 --- a/test_fixtures/block_inset_percentage.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_intrinsic_width.html b/test_fixtures/block_intrinsic_width.html deleted file mode 100644 index 1d4750819..000000000 --- a/test_fixtures/block_intrinsic_width.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_auto_bottom.html b/test_fixtures/block_margin_auto_bottom.html deleted file mode 100644 index 296c172ca..000000000 --- a/test_fixtures/block_margin_auto_bottom.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_auto_bottom_and_top.html b/test_fixtures/block_margin_auto_bottom_and_top.html deleted file mode 100644 index 40a23e81b..000000000 --- a/test_fixtures/block_margin_auto_bottom_and_top.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_auto_left.html b/test_fixtures/block_margin_auto_left.html deleted file mode 100644 index 2dcddf9b7..000000000 --- a/test_fixtures/block_margin_auto_left.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_auto_left_and_right.html b/test_fixtures/block_margin_auto_left_and_right.html deleted file mode 100644 index 34beabbb2..000000000 --- a/test_fixtures/block_margin_auto_left_and_right.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_auto_left_child_bigger_than_parent.html b/test_fixtures/block_margin_auto_left_child_bigger_than_parent.html deleted file mode 100644 index 8fc65da16..000000000 --- a/test_fixtures/block_margin_auto_left_child_bigger_than_parent.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_auto_left_fix_right_child_bigger_than_parent.html b/test_fixtures/block_margin_auto_left_fix_right_child_bigger_than_parent.html deleted file mode 100644 index 67de8d4d4..000000000 --- a/test_fixtures/block_margin_auto_left_fix_right_child_bigger_than_parent.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_auto_left_right_child_bigger_than_parent.html b/test_fixtures/block_margin_auto_left_right_child_bigger_than_parent.html deleted file mode 100644 index 5273aaf35..000000000 --- a/test_fixtures/block_margin_auto_left_right_child_bigger_than_parent.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_auto_mutiple_children.html b/test_fixtures/block_margin_auto_mutiple_children.html deleted file mode 100644 index 8da357d9b..000000000 --- a/test_fixtures/block_margin_auto_mutiple_children.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_auto_right.html b/test_fixtures/block_margin_auto_right.html deleted file mode 100644 index 4d6809443..000000000 --- a/test_fixtures/block_margin_auto_right.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_auto_top.html b/test_fixtures/block_margin_auto_top.html deleted file mode 100644 index f51b08d9e..000000000 --- a/test_fixtures/block_margin_auto_top.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_fixed_auto_bottom.html b/test_fixtures/block_margin_x_fixed_auto_bottom.html deleted file mode 100644 index fcfe37424..000000000 --- a/test_fixtures/block_margin_x_fixed_auto_bottom.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_fixed_auto_left.html b/test_fixtures/block_margin_x_fixed_auto_left.html deleted file mode 100644 index 23b6395db..000000000 --- a/test_fixtures/block_margin_x_fixed_auto_left.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_fixed_auto_left_and_right.html b/test_fixtures/block_margin_x_fixed_auto_left_and_right.html deleted file mode 100644 index 628c1a8b7..000000000 --- a/test_fixtures/block_margin_x_fixed_auto_left_and_right.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_fixed_auto_right.html b/test_fixtures/block_margin_x_fixed_auto_right.html deleted file mode 100644 index f2caded8d..000000000 --- a/test_fixtures/block_margin_x_fixed_auto_right.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_fixed_auto_top.html b/test_fixtures/block_margin_x_fixed_auto_top.html deleted file mode 100644 index 9a9a493c1..000000000 --- a/test_fixtures/block_margin_x_fixed_auto_top.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_fixed_size_negative.html b/test_fixtures/block_margin_x_fixed_size_negative.html deleted file mode 100644 index 354b6039e..000000000 --- a/test_fixtures/block_margin_x_fixed_size_negative.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_fixed_size_positive.html b/test_fixtures/block_margin_x_fixed_size_positive.html deleted file mode 100644 index 01a161458..000000000 --- a/test_fixtures/block_margin_x_fixed_size_positive.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_intrinsic_size_negative.html b/test_fixtures/block_margin_x_intrinsic_size_negative.html deleted file mode 100644 index 51d7b295c..000000000 --- a/test_fixtures/block_margin_x_intrinsic_size_negative.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_intrinsic_size_positive.html b/test_fixtures/block_margin_x_intrinsic_size_positive.html deleted file mode 100644 index 21a90750a..000000000 --- a/test_fixtures/block_margin_x_intrinsic_size_positive.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_percentage_fixed_size_negative.html b/test_fixtures/block_margin_x_percentage_fixed_size_negative.html deleted file mode 100644 index a74d117ab..000000000 --- a/test_fixtures/block_margin_x_percentage_fixed_size_negative.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_percentage_fixed_size_positive.html b/test_fixtures/block_margin_x_percentage_fixed_size_positive.html deleted file mode 100644 index fa107bf3f..000000000 --- a/test_fixtures/block_margin_x_percentage_fixed_size_positive.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_percentage_intrinsic_size_other_negative.html b/test_fixtures/block_margin_x_percentage_intrinsic_size_other_negative.html deleted file mode 100644 index 93f0b2e74..000000000 --- a/test_fixtures/block_margin_x_percentage_intrinsic_size_other_negative.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_percentage_intrinsic_size_other_positive.html b/test_fixtures/block_margin_x_percentage_intrinsic_size_other_positive.html deleted file mode 100644 index 1e9073964..000000000 --- a/test_fixtures/block_margin_x_percentage_intrinsic_size_other_positive.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_percentage_intrinsic_size_self_negative.html b/test_fixtures/block_margin_x_percentage_intrinsic_size_self_negative.html deleted file mode 100644 index 34fc3e2e6..000000000 --- a/test_fixtures/block_margin_x_percentage_intrinsic_size_self_negative.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_x_percentage_intrinsic_size_self_positive.html b/test_fixtures/block_margin_x_percentage_intrinsic_size_self_positive.html deleted file mode 100644 index cbbccbdd0..000000000 --- a/test_fixtures/block_margin_x_percentage_intrinsic_size_self_positive.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_aspect_ratio.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_aspect_ratio.html deleted file mode 100644 index bc038f016..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_aspect_ratio.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_border_bottom.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_border_bottom.html deleted file mode 100644 index 5c4fb18b9..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_border_bottom.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_border_top.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_border_top.html deleted file mode 100644 index 197d45b78..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_border_top.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_height.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_height.html deleted file mode 100644 index 02384ceab..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_height.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_line_box.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_line_box.html deleted file mode 100644 index 0535d686d..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_line_box.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_line_box_with_height_zero.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_line_box_with_height_zero.html deleted file mode 100644 index 5e60ec568..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_line_box_with_height_zero.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero.html deleted file mode 100644 index 6a03e23fc..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_min_height.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_min_height.html deleted file mode 100644 index 40468b0e3..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_min_height.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_overflow_x_hidden.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_overflow_x_hidden.html deleted file mode 100644 index 1afb344c3..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_overflow_x_hidden.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_overflow_x_scroll.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_overflow_x_scroll.html deleted file mode 100644 index ba33be8ee..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_overflow_x_scroll.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_overflow_y_hidden.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_overflow_y_hidden.html deleted file mode 100644 index 2e4db0e96..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_overflow_y_hidden.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_overflow_y_scroll.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_overflow_y_scroll.html deleted file mode 100644 index 90971ecb2..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_overflow_y_scroll.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_padding_bottom.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_padding_bottom.html deleted file mode 100644 index 062ba6b43..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_padding_bottom.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_blocked_by_padding_top.html b/test_fixtures/block_margin_y_collapse_through_blocked_by_padding_top.html deleted file mode 100644 index 84fb76b7e..000000000 --- a/test_fixtures/block_margin_y_collapse_through_blocked_by_padding_top.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_negative.html b/test_fixtures/block_margin_y_collapse_through_negative.html deleted file mode 100644 index 515404e10..000000000 --- a/test_fixtures/block_margin_y_collapse_through_negative.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_positive.html b/test_fixtures/block_margin_y_collapse_through_positive.html deleted file mode 100644 index 77ee0e771..000000000 --- a/test_fixtures/block_margin_y_collapse_through_positive.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_positive_and_negative.html b/test_fixtures/block_margin_y_collapse_through_positive_and_negative.html deleted file mode 100644 index c836dfd54..000000000 --- a/test_fixtures/block_margin_y_collapse_through_positive_and_negative.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_collapse_through_with_absolute_child.html b/test_fixtures/block_margin_y_collapse_through_with_absolute_child.html deleted file mode 100644 index 061b707f9..000000000 --- a/test_fixtures/block_margin_y_collapse_through_with_absolute_child.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_blocked_by_border_top.html b/test_fixtures/block_margin_y_first_child_collapse_blocked_by_border_top.html deleted file mode 100644 index d0a3cad71..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_blocked_by_border_top.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_blocked_by_overflow_x_hidden.html b/test_fixtures/block_margin_y_first_child_collapse_blocked_by_overflow_x_hidden.html deleted file mode 100644 index 314499b5e..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_blocked_by_overflow_x_hidden.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_blocked_by_overflow_x_scroll.html b/test_fixtures/block_margin_y_first_child_collapse_blocked_by_overflow_x_scroll.html deleted file mode 100644 index 7053141b0..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_blocked_by_overflow_x_scroll.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_blocked_by_overflow_y_hidden.html b/test_fixtures/block_margin_y_first_child_collapse_blocked_by_overflow_y_hidden.html deleted file mode 100644 index 221777274..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_blocked_by_overflow_y_hidden.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_blocked_by_overflow_y_scroll.html b/test_fixtures/block_margin_y_first_child_collapse_blocked_by_overflow_y_scroll.html deleted file mode 100644 index e18793a81..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_blocked_by_overflow_y_scroll.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_blocked_by_padding_top.html b/test_fixtures/block_margin_y_first_child_collapse_blocked_by_padding_top.html deleted file mode 100644 index fb8f5021c..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_blocked_by_padding_top.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_negative_equal.html b/test_fixtures/block_margin_y_first_child_collapse_negative_equal.html deleted file mode 100644 index 3252479ad..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_negative_equal.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_negative_parent_larger.html b/test_fixtures/block_margin_y_first_child_collapse_negative_parent_larger.html deleted file mode 100644 index b8a19bcb2..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_negative_parent_larger.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_negative_parent_smaller.html b/test_fixtures/block_margin_y_first_child_collapse_negative_parent_smaller.html deleted file mode 100644 index b99d73948..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_negative_parent_smaller.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_not_blocked_by_border_bottom.html b/test_fixtures/block_margin_y_first_child_collapse_not_blocked_by_border_bottom.html deleted file mode 100644 index 2ab650516..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_not_blocked_by_border_bottom.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_not_blocked_by_padding_bottom.html b/test_fixtures/block_margin_y_first_child_collapse_not_blocked_by_padding_bottom.html deleted file mode 100644 index 205bb62f7..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_not_blocked_by_padding_bottom.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_positive_equal.html b/test_fixtures/block_margin_y_first_child_collapse_positive_equal.html deleted file mode 100644 index 6178bfa3d..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_positive_equal.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_positive_parent_larger.html b/test_fixtures/block_margin_y_first_child_collapse_positive_parent_larger.html deleted file mode 100644 index 81bc32054..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_positive_parent_larger.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_child_collapse_positive_parent_smaller.html b/test_fixtures/block_margin_y_first_child_collapse_positive_parent_smaller.html deleted file mode 100644 index 94e2b8a6c..000000000 --- a/test_fixtures/block_margin_y_first_child_collapse_positive_parent_smaller.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_first_granchild_collapse_positive_equal.html b/test_fixtures/block_margin_y_first_granchild_collapse_positive_equal.html deleted file mode 100644 index c8d928f83..000000000 --- a/test_fixtures/block_margin_y_first_granchild_collapse_positive_equal.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_blocked_by_border_bottom.html b/test_fixtures/block_margin_y_last_child_collapse_blocked_by_border_bottom.html deleted file mode 100644 index 0f8b280ac..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_blocked_by_border_bottom.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_blocked_by_overflow_x_hidden.html b/test_fixtures/block_margin_y_last_child_collapse_blocked_by_overflow_x_hidden.html deleted file mode 100644 index 63e824aa1..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_blocked_by_overflow_x_hidden.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_blocked_by_overflow_x_scroll.html b/test_fixtures/block_margin_y_last_child_collapse_blocked_by_overflow_x_scroll.html deleted file mode 100644 index 62f5a4829..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_blocked_by_overflow_x_scroll.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_blocked_by_overflow_y_hidden.html b/test_fixtures/block_margin_y_last_child_collapse_blocked_by_overflow_y_hidden.html deleted file mode 100644 index 71287104f..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_blocked_by_overflow_y_hidden.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_blocked_by_overflow_y_scroll.html b/test_fixtures/block_margin_y_last_child_collapse_blocked_by_overflow_y_scroll.html deleted file mode 100644 index 784444f5c..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_blocked_by_overflow_y_scroll.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_blocked_by_padding_bottom.html b/test_fixtures/block_margin_y_last_child_collapse_blocked_by_padding_bottom.html deleted file mode 100644 index 2dd974c83..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_blocked_by_padding_bottom.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_negative_equal.html b/test_fixtures/block_margin_y_last_child_collapse_negative_equal.html deleted file mode 100644 index eaf168c58..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_negative_equal.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_negative_parent_larger.html b/test_fixtures/block_margin_y_last_child_collapse_negative_parent_larger.html deleted file mode 100644 index 2b17de1d4..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_negative_parent_larger.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_negative_parent_smaller.html b/test_fixtures/block_margin_y_last_child_collapse_negative_parent_smaller.html deleted file mode 100644 index f0fb5dae6..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_negative_parent_smaller.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_not_blocked_by_border_top.html b/test_fixtures/block_margin_y_last_child_collapse_not_blocked_by_border_top.html deleted file mode 100644 index f074fe9f6..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_not_blocked_by_border_top.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_not_blocked_by_padding_top.html b/test_fixtures/block_margin_y_last_child_collapse_not_blocked_by_padding_top.html deleted file mode 100644 index 80e2bdbff..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_not_blocked_by_padding_top.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_positive_equal.html b/test_fixtures/block_margin_y_last_child_collapse_positive_equal.html deleted file mode 100644 index 8ab9f422b..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_positive_equal.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_positive_parent_larger.html b/test_fixtures/block_margin_y_last_child_collapse_positive_parent_larger.html deleted file mode 100644 index 7dfc20a91..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_positive_parent_larger.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_child_collapse_positive_parent_smaller.html b/test_fixtures/block_margin_y_last_child_collapse_positive_parent_smaller.html deleted file mode 100644 index 8c5158564..000000000 --- a/test_fixtures/block_margin_y_last_child_collapse_positive_parent_smaller.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_last_granchild_collapse_positive_equal.html b/test_fixtures/block_margin_y_last_granchild_collapse_positive_equal.html deleted file mode 100644 index 96e8b8499..000000000 --- a/test_fixtures/block_margin_y_last_granchild_collapse_positive_equal.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_simple_negative.html b/test_fixtures/block_margin_y_simple_negative.html deleted file mode 100644 index 3d62f81d3..000000000 --- a/test_fixtures/block_margin_y_simple_negative.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_simple_negative_percentage_other.html b/test_fixtures/block_margin_y_simple_negative_percentage_other.html deleted file mode 100644 index 7738dd391..000000000 --- a/test_fixtures/block_margin_y_simple_negative_percentage_other.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_simple_negative_percentage_self.html b/test_fixtures/block_margin_y_simple_negative_percentage_self.html deleted file mode 100644 index f96455cda..000000000 --- a/test_fixtures/block_margin_y_simple_negative_percentage_self.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_simple_positive.html b/test_fixtures/block_margin_y_simple_positive.html deleted file mode 100644 index 3bb9d77f4..000000000 --- a/test_fixtures/block_margin_y_simple_positive.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_simple_positive_percentage_other.html b/test_fixtures/block_margin_y_simple_positive_percentage_other.html deleted file mode 100644 index 2b3f1df9e..000000000 --- a/test_fixtures/block_margin_y_simple_positive_percentage_other.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_margin_y_simple_positive_percentage_self.html b/test_fixtures/block_margin_y_simple_positive_percentage_self.html deleted file mode 100644 index 3c4f0aef4..000000000 --- a/test_fixtures/block_margin_y_simple_positive_percentage_self.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_overflow_scrollbars_overriden_by_available_space.html b/test_fixtures/block_overflow_scrollbars_overriden_by_available_space.html deleted file mode 100644 index ef06f1602..000000000 --- a/test_fixtures/block_overflow_scrollbars_overriden_by_available_space.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_overflow_scrollbars_overriden_by_max_size.html b/test_fixtures/block_overflow_scrollbars_overriden_by_max_size.html deleted file mode 100644 index bee2bfe8b..000000000 --- a/test_fixtures/block_overflow_scrollbars_overriden_by_max_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_overflow_scrollbars_overriden_by_size.html b/test_fixtures/block_overflow_scrollbars_overriden_by_size.html deleted file mode 100644 index 59f74ef23..000000000 --- a/test_fixtures/block_overflow_scrollbars_overriden_by_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_overflow_scrollbars_take_up_space_both_axis.html b/test_fixtures/block_overflow_scrollbars_take_up_space_both_axis.html deleted file mode 100644 index 46d5baaf7..000000000 --- a/test_fixtures/block_overflow_scrollbars_take_up_space_both_axis.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_overflow_scrollbars_take_up_space_cross_axis.html b/test_fixtures/block_overflow_scrollbars_take_up_space_cross_axis.html deleted file mode 100644 index 658d0134c..000000000 --- a/test_fixtures/block_overflow_scrollbars_take_up_space_cross_axis.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_overflow_scrollbars_take_up_space_main_axis.html b/test_fixtures/block_overflow_scrollbars_take_up_space_main_axis.html deleted file mode 100644 index 1179d1715..000000000 --- a/test_fixtures/block_overflow_scrollbars_take_up_space_main_axis.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_padding_border_fixed_size.html b/test_fixtures/block_padding_border_fixed_size.html deleted file mode 100644 index f8db610d9..000000000 --- a/test_fixtures/block_padding_border_fixed_size.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_padding_border_intrinsic_size.html b/test_fixtures/block_padding_border_intrinsic_size.html deleted file mode 100644 index e311daa1c..000000000 --- a/test_fixtures/block_padding_border_intrinsic_size.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_padding_border_overrides_max_size.html b/test_fixtures/block_padding_border_overrides_max_size.html deleted file mode 100644 index aebc99307..000000000 --- a/test_fixtures/block_padding_border_overrides_max_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_padding_border_overrides_min_size.html b/test_fixtures/block_padding_border_overrides_min_size.html deleted file mode 100644 index f6b7475d8..000000000 --- a/test_fixtures/block_padding_border_overrides_min_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_padding_border_overrides_size.html b/test_fixtures/block_padding_border_overrides_size.html deleted file mode 100644 index b8dfecab3..000000000 --- a/test_fixtures/block_padding_border_overrides_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_padding_border_percentage_fixed_size.html b/test_fixtures/block_padding_border_percentage_fixed_size.html deleted file mode 100644 index 5f53e84ff..000000000 --- a/test_fixtures/block_padding_border_percentage_fixed_size.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_padding_border_percentage_intrinsic_size.html b/test_fixtures/block_padding_border_percentage_intrinsic_size.html deleted file mode 100644 index c443f296c..000000000 --- a/test_fixtures/block_padding_border_percentage_intrinsic_size.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_padding_fixed_size.html b/test_fixtures/block_padding_fixed_size.html deleted file mode 100644 index 423a81621..000000000 --- a/test_fixtures/block_padding_fixed_size.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_padding_intrinsic_size.html b/test_fixtures/block_padding_intrinsic_size.html deleted file mode 100644 index 4320d1db1..000000000 --- a/test_fixtures/block_padding_intrinsic_size.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_padding_percentage_fixed_size.html b/test_fixtures/block_padding_percentage_fixed_size.html deleted file mode 100644 index 2d69c8160..000000000 --- a/test_fixtures/block_padding_percentage_fixed_size.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/block_padding_percentage_intrinsic_size.html b/test_fixtures/block_padding_percentage_intrinsic_size.html deleted file mode 100644 index 79b8280f8..000000000 --- a/test_fixtures/block_padding_percentage_intrinsic_size.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockflex/blockflex_block_in_flex_column.html b/test_fixtures/blockflex/blockflex_block_in_flex_column.html new file mode 100644 index 000000000..5b9fb5b07 --- /dev/null +++ b/test_fixtures/blockflex/blockflex_block_in_flex_column.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockflex/blockflex_block_in_flex_row.html b/test_fixtures/blockflex/blockflex_block_in_flex_row.html new file mode 100644 index 000000000..657738563 --- /dev/null +++ b/test_fixtures/blockflex/blockflex_block_in_flex_row.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockflex/blockflex_flex_in_block.html b/test_fixtures/blockflex/blockflex_flex_in_block.html new file mode 100644 index 000000000..ad1207fff --- /dev/null +++ b/test_fixtures/blockflex/blockflex_flex_in_block.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockflex/blockflex_margin_y_collapse_through_blocked_by_flex.html b/test_fixtures/blockflex/blockflex_margin_y_collapse_through_blocked_by_flex.html new file mode 100644 index 000000000..f56b41d0f --- /dev/null +++ b/test_fixtures/blockflex/blockflex_margin_y_collapse_through_blocked_by_flex.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockflex/blockflex_margin_y_first_child_collapse_blocked_by_flex.html b/test_fixtures/blockflex/blockflex_margin_y_first_child_collapse_blocked_by_flex.html new file mode 100644 index 000000000..027e00570 --- /dev/null +++ b/test_fixtures/blockflex/blockflex_margin_y_first_child_collapse_blocked_by_flex.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockflex/blockflex_margin_y_last_child_collapse_blocked_by_flex.html b/test_fixtures/blockflex/blockflex_margin_y_last_child_collapse_blocked_by_flex.html new file mode 100644 index 000000000..18ed0b964 --- /dev/null +++ b/test_fixtures/blockflex/blockflex_margin_y_last_child_collapse_blocked_by_flex.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockflex/blockflex_overflow_hidden.html b/test_fixtures/blockflex/blockflex_overflow_hidden.html new file mode 100644 index 000000000..2ed1d6d33 --- /dev/null +++ b/test_fixtures/blockflex/blockflex_overflow_hidden.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HHHH​HH
+
HHHH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockflex_block_in_flex_column.html b/test_fixtures/blockflex_block_in_flex_column.html deleted file mode 100644 index 9ef65585b..000000000 --- a/test_fixtures/blockflex_block_in_flex_column.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockflex_block_in_flex_row.html b/test_fixtures/blockflex_block_in_flex_row.html deleted file mode 100644 index 0d6f1ef6b..000000000 --- a/test_fixtures/blockflex_block_in_flex_row.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockflex_flex_in_block.html b/test_fixtures/blockflex_flex_in_block.html deleted file mode 100644 index 20a08ba32..000000000 --- a/test_fixtures/blockflex_flex_in_block.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockflex_margin_y_collapse_through_blocked_by_flex.html b/test_fixtures/blockflex_margin_y_collapse_through_blocked_by_flex.html deleted file mode 100644 index 5e1cf836a..000000000 --- a/test_fixtures/blockflex_margin_y_collapse_through_blocked_by_flex.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockflex_margin_y_first_child_collapse_blocked_by_flex.html b/test_fixtures/blockflex_margin_y_first_child_collapse_blocked_by_flex.html deleted file mode 100644 index 0829f166d..000000000 --- a/test_fixtures/blockflex_margin_y_first_child_collapse_blocked_by_flex.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockflex_margin_y_last_child_collapse_blocked_by_flex.html b/test_fixtures/blockflex_margin_y_last_child_collapse_blocked_by_flex.html deleted file mode 100644 index 17b7cd76c..000000000 --- a/test_fixtures/blockflex_margin_y_last_child_collapse_blocked_by_flex.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockflex_overflow_hidden.html b/test_fixtures/blockflex_overflow_hidden.html deleted file mode 100644 index 4a2b8d7d0..000000000 --- a/test_fixtures/blockflex_overflow_hidden.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHH​HH
-
HHHH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_block_in_grid_auto.html b/test_fixtures/blockgrid/blockgrid_block_in_grid_auto.html new file mode 100644 index 000000000..65716f714 --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_block_in_grid_auto.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_fit_content_larger.html b/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_fit_content_larger.html new file mode 100644 index 000000000..b06025265 --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_fit_content_larger.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_fit_content_middle.html b/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_fit_content_middle.html new file mode 100644 index 000000000..4e1953af8 --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_fit_content_middle.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_fit_content_smaller.html b/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_fit_content_smaller.html new file mode 100644 index 000000000..9bc658e1c --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_fit_content_smaller.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_larger.html b/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_larger.html new file mode 100644 index 000000000..91918cdf5 --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_larger.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_middle.html b/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_middle.html new file mode 100644 index 000000000..da00cba61 --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_middle.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_smaller.html b/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_smaller.html new file mode 100644 index 000000000..1ccf63f8f --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_block_in_grid_fixed_smaller.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_block_in_grid_fr.html b/test_fixtures/blockgrid/blockgrid_block_in_grid_fr.html new file mode 100644 index 000000000..68a1bd46c --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_block_in_grid_fr.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_block_in_grid_max_content.html b/test_fixtures/blockgrid/blockgrid_block_in_grid_max_content.html new file mode 100644 index 000000000..714ba194b --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_block_in_grid_max_content.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_block_in_grid_min_content.html b/test_fixtures/blockgrid/blockgrid_block_in_grid_min_content.html new file mode 100644 index 000000000..714ba194b --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_block_in_grid_min_content.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_grid_in_block.html b/test_fixtures/blockgrid/blockgrid_grid_in_block.html new file mode 100644 index 000000000..d9d41aaa5 --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_grid_in_block.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_margin_y_collapse_through_blocked_by_grid.html b/test_fixtures/blockgrid/blockgrid_margin_y_collapse_through_blocked_by_grid.html new file mode 100644 index 000000000..678e9f584 --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_margin_y_collapse_through_blocked_by_grid.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_margin_y_first_child_collapse_blocked_by_grid.html b/test_fixtures/blockgrid/blockgrid_margin_y_first_child_collapse_blocked_by_grid.html new file mode 100644 index 000000000..1760bddf0 --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_margin_y_first_child_collapse_blocked_by_grid.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid/blockgrid_margin_y_last_child_collapse_blocked_by_grid.html b/test_fixtures/blockgrid/blockgrid_margin_y_last_child_collapse_blocked_by_grid.html new file mode 100644 index 000000000..74db4694d --- /dev/null +++ b/test_fixtures/blockgrid/blockgrid_margin_y_last_child_collapse_blocked_by_grid.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/blockgrid_block_in_grid_auto.html b/test_fixtures/blockgrid_block_in_grid_auto.html deleted file mode 100644 index 0b659ff37..000000000 --- a/test_fixtures/blockgrid_block_in_grid_auto.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid_block_in_grid_fixed_fit_content_larger.html b/test_fixtures/blockgrid_block_in_grid_fixed_fit_content_larger.html deleted file mode 100644 index a3b386f05..000000000 --- a/test_fixtures/blockgrid_block_in_grid_fixed_fit_content_larger.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid_block_in_grid_fixed_fit_content_middle.html b/test_fixtures/blockgrid_block_in_grid_fixed_fit_content_middle.html deleted file mode 100644 index b55a547fc..000000000 --- a/test_fixtures/blockgrid_block_in_grid_fixed_fit_content_middle.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid_block_in_grid_fixed_fit_content_smaller.html b/test_fixtures/blockgrid_block_in_grid_fixed_fit_content_smaller.html deleted file mode 100644 index 2b033438e..000000000 --- a/test_fixtures/blockgrid_block_in_grid_fixed_fit_content_smaller.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid_block_in_grid_fixed_larger.html b/test_fixtures/blockgrid_block_in_grid_fixed_larger.html deleted file mode 100644 index b30dde49c..000000000 --- a/test_fixtures/blockgrid_block_in_grid_fixed_larger.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid_block_in_grid_fixed_middle.html b/test_fixtures/blockgrid_block_in_grid_fixed_middle.html deleted file mode 100644 index 0b5d5be79..000000000 --- a/test_fixtures/blockgrid_block_in_grid_fixed_middle.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid_block_in_grid_fixed_smaller.html b/test_fixtures/blockgrid_block_in_grid_fixed_smaller.html deleted file mode 100644 index c3353423e..000000000 --- a/test_fixtures/blockgrid_block_in_grid_fixed_smaller.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid_block_in_grid_fr.html b/test_fixtures/blockgrid_block_in_grid_fr.html deleted file mode 100644 index 9d84e2631..000000000 --- a/test_fixtures/blockgrid_block_in_grid_fr.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid_block_in_grid_max_content.html b/test_fixtures/blockgrid_block_in_grid_max_content.html deleted file mode 100644 index 24b7a2643..000000000 --- a/test_fixtures/blockgrid_block_in_grid_max_content.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid_block_in_grid_min_content.html b/test_fixtures/blockgrid_block_in_grid_min_content.html deleted file mode 100644 index 24b7a2643..000000000 --- a/test_fixtures/blockgrid_block_in_grid_min_content.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid_grid_in_block.html b/test_fixtures/blockgrid_grid_in_block.html deleted file mode 100644 index 01e63fab7..000000000 --- a/test_fixtures/blockgrid_grid_in_block.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid_margin_y_collapse_through_blocked_by_grid.html b/test_fixtures/blockgrid_margin_y_collapse_through_blocked_by_grid.html deleted file mode 100644 index 68e97e9aa..000000000 --- a/test_fixtures/blockgrid_margin_y_collapse_through_blocked_by_grid.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid_margin_y_first_child_collapse_blocked_by_grid.html b/test_fixtures/blockgrid_margin_y_first_child_collapse_blocked_by_grid.html deleted file mode 100644 index 900d7b5ae..000000000 --- a/test_fixtures/blockgrid_margin_y_first_child_collapse_blocked_by_grid.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/blockgrid_margin_y_last_child_collapse_blocked_by_grid.html b/test_fixtures/blockgrid_margin_y_last_child_collapse_blocked_by_grid.html deleted file mode 100644 index 8ad2efa07..000000000 --- a/test_fixtures/blockgrid_margin_y_last_child_collapse_blocked_by_grid.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/border_center_child.html b/test_fixtures/border_center_child.html deleted file mode 100644 index ec759f9c0..000000000 --- a/test_fixtures/border_center_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/border_container_match_child.html b/test_fixtures/border_container_match_child.html deleted file mode 100644 index 3c072182c..000000000 --- a/test_fixtures/border_container_match_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/border_flex_child.html b/test_fixtures/border_flex_child.html deleted file mode 100644 index 4b2d98f66..000000000 --- a/test_fixtures/border_flex_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/border_no_child.html b/test_fixtures/border_no_child.html deleted file mode 100644 index 3c15e6cd7..000000000 --- a/test_fixtures/border_no_child.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
- - - \ No newline at end of file diff --git a/test_fixtures/border_no_size.html b/test_fixtures/border_no_size.html deleted file mode 100644 index b50d3beb4..000000000 --- a/test_fixtures/border_no_size.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
- - - \ No newline at end of file diff --git a/test_fixtures/border_stretch_child.html b/test_fixtures/border_stretch_child.html deleted file mode 100644 index 995b03400..000000000 --- a/test_fixtures/border_stretch_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/child_min_max_width_flexing.html b/test_fixtures/child_min_max_width_flexing.html deleted file mode 100644 index 192b09f79..000000000 --- a/test_fixtures/child_min_max_width_flexing.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/child_with_padding_align_end.html b/test_fixtures/child_with_padding_align_end.html deleted file mode 100644 index f62ae6c11..000000000 --- a/test_fixtures/child_with_padding_align_end.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/container_with_unsized_child.html b/test_fixtures/container_with_unsized_child.html deleted file mode 100644 index efd3b530d..000000000 --- a/test_fixtures/container_with_unsized_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/display_none.html b/test_fixtures/display_none.html deleted file mode 100644 index b66b9fb16..000000000 --- a/test_fixtures/display_none.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/display_none_absolute_child.html b/test_fixtures/display_none_absolute_child.html deleted file mode 100644 index 62e9a236f..000000000 --- a/test_fixtures/display_none_absolute_child.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/display_none_fixed_size.html b/test_fixtures/display_none_fixed_size.html deleted file mode 100644 index 2c78295e6..000000000 --- a/test_fixtures/display_none_fixed_size.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/display_none_only_node.html b/test_fixtures/display_none_only_node.html deleted file mode 100644 index d09f4ef7d..000000000 --- a/test_fixtures/display_none_only_node.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - - - - - \ No newline at end of file diff --git a/test_fixtures/display_none_with_child.html b/test_fixtures/display_none_with_child.html deleted file mode 100644 index 049b7eb24..000000000 --- a/test_fixtures/display_none_with_child.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/display_none_with_margin.html b/test_fixtures/display_none_with_margin.html deleted file mode 100644 index da6c127df..000000000 --- a/test_fixtures/display_none_with_margin.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/display_none_with_position.html b/test_fixtures/display_none_with_position.html deleted file mode 100644 index 418e6ee6d..000000000 --- a/test_fixtures/display_none_with_position.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/display_none_with_position_absolute.html b/test_fixtures/display_none_with_position_absolute.html deleted file mode 100644 index 60ba71559..000000000 --- a/test_fixtures/display_none_with_position_absolute.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/do_not_clamp_height_of_absolute_node_to_height_of_its_overflow_hidden_parent.html b/test_fixtures/do_not_clamp_height_of_absolute_node_to_height_of_its_overflow_hidden_parent.html deleted file mode 100644 index 6f36146d9..000000000 --- a/test_fixtures/do_not_clamp_height_of_absolute_node_to_height_of_its_overflow_hidden_parent.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex/absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.html b/test_fixtures/flex/absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.html new file mode 100644 index 000000000..b26570040 --- /dev/null +++ b/test_fixtures/flex/absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_aspect_ratio_fill_height.html b/test_fixtures/flex/absolute_aspect_ratio_fill_height.html new file mode 100644 index 000000000..8c2d98f59 --- /dev/null +++ b/test_fixtures/flex/absolute_aspect_ratio_fill_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_aspect_ratio_fill_height_from_inset.html b/test_fixtures/flex/absolute_aspect_ratio_fill_height_from_inset.html new file mode 100644 index 000000000..345d30a9a --- /dev/null +++ b/test_fixtures/flex/absolute_aspect_ratio_fill_height_from_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_aspect_ratio_fill_max_height.html b/test_fixtures/flex/absolute_aspect_ratio_fill_max_height.html new file mode 100644 index 000000000..244b7b5ad --- /dev/null +++ b/test_fixtures/flex/absolute_aspect_ratio_fill_max_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_aspect_ratio_fill_max_width.html b/test_fixtures/flex/absolute_aspect_ratio_fill_max_width.html new file mode 100644 index 000000000..552173c51 --- /dev/null +++ b/test_fixtures/flex/absolute_aspect_ratio_fill_max_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_aspect_ratio_fill_min_height.html b/test_fixtures/flex/absolute_aspect_ratio_fill_min_height.html new file mode 100644 index 000000000..9fda933ee --- /dev/null +++ b/test_fixtures/flex/absolute_aspect_ratio_fill_min_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_aspect_ratio_fill_min_width.html b/test_fixtures/flex/absolute_aspect_ratio_fill_min_width.html new file mode 100644 index 000000000..e9b19b84a --- /dev/null +++ b/test_fixtures/flex/absolute_aspect_ratio_fill_min_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_aspect_ratio_fill_width.html b/test_fixtures/flex/absolute_aspect_ratio_fill_width.html new file mode 100644 index 000000000..24e200fa7 --- /dev/null +++ b/test_fixtures/flex/absolute_aspect_ratio_fill_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_aspect_ratio_fill_width_from_inset.html b/test_fixtures/flex/absolute_aspect_ratio_fill_width_from_inset.html new file mode 100644 index 000000000..62a4334e7 --- /dev/null +++ b/test_fixtures/flex/absolute_aspect_ratio_fill_width_from_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_aspect_ratio_height_overrides_inset.html b/test_fixtures/flex/absolute_aspect_ratio_height_overrides_inset.html new file mode 100644 index 000000000..083ef5a49 --- /dev/null +++ b/test_fixtures/flex/absolute_aspect_ratio_height_overrides_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_aspect_ratio_width_overrides_inset.html b/test_fixtures/flex/absolute_aspect_ratio_width_overrides_inset.html new file mode 100644 index 000000000..10ee0424e --- /dev/null +++ b/test_fixtures/flex/absolute_aspect_ratio_width_overrides_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/absolute_child_with_cross_margin.html b/test_fixtures/flex/absolute_child_with_cross_margin.html similarity index 80% rename from test_fixtures/absolute_child_with_cross_margin.html rename to test_fixtures/flex/absolute_child_with_cross_margin.html index fe14f4e01..067d08dbd 100644 --- a/test_fixtures/absolute_child_with_cross_margin.html +++ b/test_fixtures/flex/absolute_child_with_cross_margin.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/absolute_child_with_main_margin.html b/test_fixtures/flex/absolute_child_with_main_margin.html new file mode 100644 index 000000000..b1992abab --- /dev/null +++ b/test_fixtures/flex/absolute_child_with_main_margin.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_child_with_max_height.html b/test_fixtures/flex/absolute_child_with_max_height.html new file mode 100644 index 000000000..27ccbe6d7 --- /dev/null +++ b/test_fixtures/flex/absolute_child_with_max_height.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_child_with_max_height_larger_shrinkable_grandchild.html b/test_fixtures/flex/absolute_child_with_max_height_larger_shrinkable_grandchild.html new file mode 100644 index 000000000..d7b1960fe --- /dev/null +++ b/test_fixtures/flex/absolute_child_with_max_height_larger_shrinkable_grandchild.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center.html b/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center.html new file mode 100644 index 000000000..1ae8ad162 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center_and_bottom_position.html b/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center_and_bottom_position.html new file mode 100644 index 000000000..fd29dfee3 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center_and_bottom_position.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center_and_left_position.html b/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center_and_left_position.html new file mode 100644 index 000000000..c7d175e0b --- /dev/null +++ b/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center_and_left_position.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center_and_right_position.html b/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center_and_right_position.html new file mode 100644 index 000000000..50a9a59b8 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center_and_right_position.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center_and_top_position.html b/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center_and_top_position.html new file mode 100644 index 000000000..91a64a8eb --- /dev/null +++ b/test_fixtures/flex/absolute_layout_align_items_and_justify_content_center_and_top_position.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_align_items_and_justify_content_flex_end.html b/test_fixtures/flex/absolute_layout_align_items_and_justify_content_flex_end.html new file mode 100644 index 000000000..de0aef491 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_align_items_and_justify_content_flex_end.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_align_items_center.html b/test_fixtures/flex/absolute_layout_align_items_center.html new file mode 100644 index 000000000..f5ddffedd --- /dev/null +++ b/test_fixtures/flex/absolute_layout_align_items_center.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_align_items_center_on_child_only.html b/test_fixtures/flex/absolute_layout_align_items_center_on_child_only.html new file mode 100644 index 000000000..713fd87f5 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_align_items_center_on_child_only.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_child_order.html b/test_fixtures/flex/absolute_layout_child_order.html new file mode 100644 index 000000000..eaf0887a4 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_child_order.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_in_wrap_reverse_column_container.html b/test_fixtures/flex/absolute_layout_in_wrap_reverse_column_container.html new file mode 100644 index 000000000..fdd57cfcc --- /dev/null +++ b/test_fixtures/flex/absolute_layout_in_wrap_reverse_column_container.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_in_wrap_reverse_column_container_flex_end.html b/test_fixtures/flex/absolute_layout_in_wrap_reverse_column_container_flex_end.html new file mode 100644 index 000000000..93f76a0d6 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_in_wrap_reverse_column_container_flex_end.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_in_wrap_reverse_row_container.html b/test_fixtures/flex/absolute_layout_in_wrap_reverse_row_container.html new file mode 100644 index 000000000..2e455a91e --- /dev/null +++ b/test_fixtures/flex/absolute_layout_in_wrap_reverse_row_container.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_in_wrap_reverse_row_container_flex_end.html b/test_fixtures/flex/absolute_layout_in_wrap_reverse_row_container_flex_end.html new file mode 100644 index 000000000..fcd30aac5 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_in_wrap_reverse_row_container_flex_end.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_justify_content_center.html b/test_fixtures/flex/absolute_layout_justify_content_center.html new file mode 100644 index 000000000..896e9ab48 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_justify_content_center.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_no_size.html b/test_fixtures/flex/absolute_layout_no_size.html new file mode 100644 index 000000000..8698c1fb1 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_no_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_percentage_bottom_based_on_parent_height.html b/test_fixtures/flex/absolute_layout_percentage_bottom_based_on_parent_height.html new file mode 100644 index 000000000..9c5e7acf1 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_percentage_bottom_based_on_parent_height.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_percentage_height.html b/test_fixtures/flex/absolute_layout_percentage_height.html new file mode 100644 index 000000000..fa21df0f9 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_percentage_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_row_width_height_end_bottom.html b/test_fixtures/flex/absolute_layout_row_width_height_end_bottom.html new file mode 100644 index 000000000..6052800b1 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_row_width_height_end_bottom.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_start_top_end_bottom.html b/test_fixtures/flex/absolute_layout_start_top_end_bottom.html new file mode 100644 index 000000000..64ea6dc15 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_start_top_end_bottom.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_width_height_end_bottom.html b/test_fixtures/flex/absolute_layout_width_height_end_bottom.html new file mode 100644 index 000000000..29de74fd7 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_width_height_end_bottom.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_width_height_start_top.html b/test_fixtures/flex/absolute_layout_width_height_start_top.html new file mode 100644 index 000000000..a95d75b01 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_width_height_start_top.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_layout_width_height_start_top_end_bottom.html b/test_fixtures/flex/absolute_layout_width_height_start_top_end_bottom.html new file mode 100644 index 000000000..a8432d359 --- /dev/null +++ b/test_fixtures/flex/absolute_layout_width_height_start_top_end_bottom.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/absolute_layout_within_border.html b/test_fixtures/flex/absolute_layout_within_border.html similarity index 79% rename from test_fixtures/absolute_layout_within_border.html rename to test_fixtures/flex/absolute_layout_within_border.html index e1c848f2d..7108efd8f 100644 --- a/test_fixtures/absolute_layout_within_border.html +++ b/test_fixtures/flex/absolute_layout_within_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/absolute_margin_bottom_left.html b/test_fixtures/flex/absolute_margin_bottom_left.html new file mode 100644 index 000000000..a07f73037 --- /dev/null +++ b/test_fixtures/flex/absolute_margin_bottom_left.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_minmax_bottom_right_max.html b/test_fixtures/flex/absolute_minmax_bottom_right_max.html new file mode 100644 index 000000000..ca0ae2ffc --- /dev/null +++ b/test_fixtures/flex/absolute_minmax_bottom_right_max.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_minmax_bottom_right_min_max.html b/test_fixtures/flex/absolute_minmax_bottom_right_min_max.html new file mode 100644 index 000000000..159b09110 --- /dev/null +++ b/test_fixtures/flex/absolute_minmax_bottom_right_min_max.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_minmax_bottom_right_min_max_preferred.html b/test_fixtures/flex/absolute_minmax_bottom_right_min_max_preferred.html new file mode 100644 index 000000000..543c641e3 --- /dev/null +++ b/test_fixtures/flex/absolute_minmax_bottom_right_min_max_preferred.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_minmax_top_left_bottom_right_max.html b/test_fixtures/flex/absolute_minmax_top_left_bottom_right_max.html new file mode 100644 index 000000000..700fd47d7 --- /dev/null +++ b/test_fixtures/flex/absolute_minmax_top_left_bottom_right_max.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_minmax_top_left_bottom_right_min_max.html b/test_fixtures/flex/absolute_minmax_top_left_bottom_right_min_max.html new file mode 100644 index 000000000..7ca5ad4aa --- /dev/null +++ b/test_fixtures/flex/absolute_minmax_top_left_bottom_right_min_max.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_padding_border_overrides_max_size.html b/test_fixtures/flex/absolute_padding_border_overrides_max_size.html new file mode 100644 index 000000000..a129b6ea3 --- /dev/null +++ b/test_fixtures/flex/absolute_padding_border_overrides_max_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/absolute_padding_border_overrides_size.html b/test_fixtures/flex/absolute_padding_border_overrides_size.html new file mode 100644 index 000000000..849da8c96 --- /dev/null +++ b/test_fixtures/flex/absolute_padding_border_overrides_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_baseline.html b/test_fixtures/flex/align_baseline.html new file mode 100644 index 000000000..74edbb219 --- /dev/null +++ b/test_fixtures/flex/align_baseline.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_baseline_child.html b/test_fixtures/flex/align_baseline_child.html new file mode 100644 index 000000000..16fc50ddc --- /dev/null +++ b/test_fixtures/flex/align_baseline_child.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_baseline_child_margin.html b/test_fixtures/flex/align_baseline_child_margin.html new file mode 100644 index 000000000..80c123405 --- /dev/null +++ b/test_fixtures/flex/align_baseline_child_margin.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_baseline_child_margin_percent.html b/test_fixtures/flex/align_baseline_child_margin_percent.html new file mode 100644 index 000000000..c94655243 --- /dev/null +++ b/test_fixtures/flex/align_baseline_child_margin_percent.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/align_baseline_child_multiline.html b/test_fixtures/flex/align_baseline_child_multiline.html similarity index 76% rename from test_fixtures/align_baseline_child_multiline.html rename to test_fixtures/flex/align_baseline_child_multiline.html index 7d48f560e..9128a245b 100644 --- a/test_fixtures/align_baseline_child_multiline.html +++ b/test_fixtures/flex/align_baseline_child_multiline.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_baseline_child_multiline_no_override_on_secondline.html b/test_fixtures/flex/align_baseline_child_multiline_no_override_on_secondline.html similarity index 79% rename from test_fixtures/align_baseline_child_multiline_no_override_on_secondline.html rename to test_fixtures/flex/align_baseline_child_multiline_no_override_on_secondline.html index e68d7da8c..083c18f1a 100644 --- a/test_fixtures/align_baseline_child_multiline_no_override_on_secondline.html +++ b/test_fixtures/flex/align_baseline_child_multiline_no_override_on_secondline.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_baseline_child_multiline_override.html b/test_fixtures/flex/align_baseline_child_multiline_override.html similarity index 79% rename from test_fixtures/align_baseline_child_multiline_override.html rename to test_fixtures/flex/align_baseline_child_multiline_override.html index 879ea08ff..730d613e6 100644 --- a/test_fixtures/align_baseline_child_multiline_override.html +++ b/test_fixtures/flex/align_baseline_child_multiline_override.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/align_baseline_child_padding.html b/test_fixtures/flex/align_baseline_child_padding.html new file mode 100644 index 000000000..a422fbe32 --- /dev/null +++ b/test_fixtures/flex/align_baseline_child_padding.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_baseline_child_top.html b/test_fixtures/flex/align_baseline_child_top.html new file mode 100644 index 000000000..619bc9a17 --- /dev/null +++ b/test_fixtures/flex/align_baseline_child_top.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_baseline_child_top2.html b/test_fixtures/flex/align_baseline_child_top2.html new file mode 100644 index 000000000..877a9d4d7 --- /dev/null +++ b/test_fixtures/flex/align_baseline_child_top2.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_baseline_column.html b/test_fixtures/flex/align_baseline_column.html new file mode 100644 index 000000000..45e1b2ea1 --- /dev/null +++ b/test_fixtures/flex/align_baseline_column.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_baseline_double_nested_child.html b/test_fixtures/flex/align_baseline_double_nested_child.html new file mode 100644 index 000000000..77e49ded2 --- /dev/null +++ b/test_fixtures/flex/align_baseline_double_nested_child.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/align_baseline_multiline.html b/test_fixtures/flex/align_baseline_multiline.html similarity index 79% rename from test_fixtures/align_baseline_multiline.html rename to test_fixtures/flex/align_baseline_multiline.html index 1e77650f5..433fe8070 100644 --- a/test_fixtures/align_baseline_multiline.html +++ b/test_fixtures/flex/align_baseline_multiline.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_baseline_multiline_column.html b/test_fixtures/flex/align_baseline_multiline_column.html similarity index 79% rename from test_fixtures/align_baseline_multiline_column.html rename to test_fixtures/flex/align_baseline_multiline_column.html index 1715c36c7..2473282aa 100644 --- a/test_fixtures/align_baseline_multiline_column.html +++ b/test_fixtures/flex/align_baseline_multiline_column.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_baseline_multiline_column2.html b/test_fixtures/flex/align_baseline_multiline_column2.html similarity index 81% rename from test_fixtures/align_baseline_multiline_column2.html rename to test_fixtures/flex/align_baseline_multiline_column2.html index 188f86e5f..2db70bca0 100644 --- a/test_fixtures/align_baseline_multiline_column2.html +++ b/test_fixtures/flex/align_baseline_multiline_column2.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_baseline_multiline_row_and_column.html b/test_fixtures/flex/align_baseline_multiline_row_and_column.html similarity index 79% rename from test_fixtures/align_baseline_multiline_row_and_column.html rename to test_fixtures/flex/align_baseline_multiline_row_and_column.html index a80c4d1e9..084ef83e4 100644 --- a/test_fixtures/align_baseline_multiline_row_and_column.html +++ b/test_fixtures/flex/align_baseline_multiline_row_and_column.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/align_baseline_nested_child.html b/test_fixtures/flex/align_baseline_nested_child.html new file mode 100644 index 000000000..539d548ef --- /dev/null +++ b/test_fixtures/flex/align_baseline_nested_child.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/align_baseline_nested_column.html b/test_fixtures/flex/align_baseline_nested_column.html similarity index 78% rename from test_fixtures/align_baseline_nested_column.html rename to test_fixtures/flex/align_baseline_nested_column.html index d339e91b2..68bb2183d 100644 --- a/test_fixtures/align_baseline_nested_column.html +++ b/test_fixtures/flex/align_baseline_nested_column.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/align_center_should_size_based_on_content.html b/test_fixtures/flex/align_center_should_size_based_on_content.html new file mode 100644 index 000000000..e121db013 --- /dev/null +++ b/test_fixtures/flex/align_center_should_size_based_on_content.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/align_content_flex_end.html b/test_fixtures/flex/align_content_flex_end.html similarity index 76% rename from test_fixtures/align_content_flex_end.html rename to test_fixtures/flex/align_content_flex_end.html index 755eabcb4..61a18da54 100644 --- a/test_fixtures/align_content_flex_end.html +++ b/test_fixtures/flex/align_content_flex_end.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_content_flex_start.html b/test_fixtures/flex/align_content_flex_start.html similarity index 76% rename from test_fixtures/align_content_flex_start.html rename to test_fixtures/flex/align_content_flex_start.html index b343ad598..e468e9a8c 100644 --- a/test_fixtures/align_content_flex_start.html +++ b/test_fixtures/flex/align_content_flex_start.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_content_flex_start_with_flex.html b/test_fixtures/flex/align_content_flex_start_with_flex.html similarity index 76% rename from test_fixtures/align_content_flex_start_with_flex.html rename to test_fixtures/flex/align_content_flex_start_with_flex.html index dba9ac332..ab9cf1503 100644 --- a/test_fixtures/align_content_flex_start_with_flex.html +++ b/test_fixtures/flex/align_content_flex_start_with_flex.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/align_content_flex_start_without_height_on_children.html b/test_fixtures/flex/align_content_flex_start_without_height_on_children.html new file mode 100644 index 000000000..f09a71637 --- /dev/null +++ b/test_fixtures/flex/align_content_flex_start_without_height_on_children.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_content_not_stretch_with_align_items_stretch.html b/test_fixtures/flex/align_content_not_stretch_with_align_items_stretch.html new file mode 100644 index 000000000..f5cd82100 --- /dev/null +++ b/test_fixtures/flex/align_content_not_stretch_with_align_items_stretch.html @@ -0,0 +1,23 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/align_content_space_around_single_line.html b/test_fixtures/flex/align_content_space_around_single_line.html similarity index 77% rename from test_fixtures/align_content_space_around_single_line.html rename to test_fixtures/flex/align_content_space_around_single_line.html index ab7798338..daecb53fe 100644 --- a/test_fixtures/align_content_space_around_single_line.html +++ b/test_fixtures/flex/align_content_space_around_single_line.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_content_space_around_wrapped.html b/test_fixtures/flex/align_content_space_around_wrapped.html similarity index 77% rename from test_fixtures/align_content_space_around_wrapped.html rename to test_fixtures/flex/align_content_space_around_wrapped.html index 5b1f7691a..f1f1b3899 100644 --- a/test_fixtures/align_content_space_around_wrapped.html +++ b/test_fixtures/flex/align_content_space_around_wrapped.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_content_space_between_single_line.html b/test_fixtures/flex/align_content_space_between_single_line.html similarity index 77% rename from test_fixtures/align_content_space_between_single_line.html rename to test_fixtures/flex/align_content_space_between_single_line.html index 8dbf02ccf..1ce9967c1 100644 --- a/test_fixtures/align_content_space_between_single_line.html +++ b/test_fixtures/flex/align_content_space_between_single_line.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_content_space_between_wrapped.html b/test_fixtures/flex/align_content_space_between_wrapped.html similarity index 77% rename from test_fixtures/align_content_space_between_wrapped.html rename to test_fixtures/flex/align_content_space_between_wrapped.html index b13d572f2..f1b465dea 100644 --- a/test_fixtures/align_content_space_between_wrapped.html +++ b/test_fixtures/flex/align_content_space_between_wrapped.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_content_space_evenly_single_line.html b/test_fixtures/flex/align_content_space_evenly_single_line.html similarity index 77% rename from test_fixtures/align_content_space_evenly_single_line.html rename to test_fixtures/flex/align_content_space_evenly_single_line.html index ec8cacddd..e66920967 100644 --- a/test_fixtures/align_content_space_evenly_single_line.html +++ b/test_fixtures/flex/align_content_space_evenly_single_line.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_content_space_evenly_wrapped.html b/test_fixtures/flex/align_content_space_evenly_wrapped.html similarity index 77% rename from test_fixtures/align_content_space_evenly_wrapped.html rename to test_fixtures/flex/align_content_space_evenly_wrapped.html index 49a5199ea..19cbc43ab 100644 --- a/test_fixtures/align_content_space_evenly_wrapped.html +++ b/test_fixtures/flex/align_content_space_evenly_wrapped.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_content_spacearound.html b/test_fixtures/flex/align_content_spacearound.html similarity index 76% rename from test_fixtures/align_content_spacearound.html rename to test_fixtures/flex/align_content_spacearound.html index f42aeaf31..b3e25d7cc 100644 --- a/test_fixtures/align_content_spacearound.html +++ b/test_fixtures/flex/align_content_spacearound.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/align_content_spacebetween.html b/test_fixtures/flex/align_content_spacebetween.html similarity index 76% rename from test_fixtures/align_content_spacebetween.html rename to test_fixtures/flex/align_content_spacebetween.html index 9a5ec7184..c7b451957 100644 --- a/test_fixtures/align_content_spacebetween.html +++ b/test_fixtures/flex/align_content_spacebetween.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/align_content_stretch.html b/test_fixtures/flex/align_content_stretch.html new file mode 100644 index 000000000..96352ce39 --- /dev/null +++ b/test_fixtures/flex/align_content_stretch.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/align_content_stretch_column.html b/test_fixtures/flex/align_content_stretch_column.html similarity index 76% rename from test_fixtures/align_content_stretch_column.html rename to test_fixtures/flex/align_content_stretch_column.html index 02c31f4e4..747a9a175 100644 --- a/test_fixtures/align_content_stretch_column.html +++ b/test_fixtures/flex/align_content_stretch_column.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/align_content_stretch_is_not_overriding_align_items.html b/test_fixtures/flex/align_content_stretch_is_not_overriding_align_items.html new file mode 100644 index 000000000..391b3c4e5 --- /dev/null +++ b/test_fixtures/flex/align_content_stretch_is_not_overriding_align_items.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_content_stretch_row.html b/test_fixtures/flex/align_content_stretch_row.html new file mode 100644 index 000000000..15fbfae9f --- /dev/null +++ b/test_fixtures/flex/align_content_stretch_row.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/align_content_stretch_row_with_children.html b/test_fixtures/flex/align_content_stretch_row_with_children.html similarity index 75% rename from test_fixtures/align_content_stretch_row_with_children.html rename to test_fixtures/flex/align_content_stretch_row_with_children.html index 1d3bfe5ca..2d29c8184 100644 --- a/test_fixtures/align_content_stretch_row_with_children.html +++ b/test_fixtures/flex/align_content_stretch_row_with_children.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/align_content_stretch_row_with_fixed_height.html b/test_fixtures/flex/align_content_stretch_row_with_fixed_height.html new file mode 100644 index 000000000..535bcb25a --- /dev/null +++ b/test_fixtures/flex/align_content_stretch_row_with_fixed_height.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_content_stretch_row_with_flex.html b/test_fixtures/flex/align_content_stretch_row_with_flex.html new file mode 100644 index 000000000..8ee4fa7fa --- /dev/null +++ b/test_fixtures/flex/align_content_stretch_row_with_flex.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_content_stretch_row_with_flex_no_shrink.html b/test_fixtures/flex/align_content_stretch_row_with_flex_no_shrink.html new file mode 100644 index 000000000..856964817 --- /dev/null +++ b/test_fixtures/flex/align_content_stretch_row_with_flex_no_shrink.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_content_stretch_row_with_margin.html b/test_fixtures/flex/align_content_stretch_row_with_margin.html new file mode 100644 index 000000000..bb26ebb9f --- /dev/null +++ b/test_fixtures/flex/align_content_stretch_row_with_margin.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_content_stretch_row_with_max_height.html b/test_fixtures/flex/align_content_stretch_row_with_max_height.html new file mode 100644 index 000000000..ed6294f44 --- /dev/null +++ b/test_fixtures/flex/align_content_stretch_row_with_max_height.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_content_stretch_row_with_min_height.html b/test_fixtures/flex/align_content_stretch_row_with_min_height.html new file mode 100644 index 000000000..4832903ed --- /dev/null +++ b/test_fixtures/flex/align_content_stretch_row_with_min_height.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_content_stretch_row_with_padding.html b/test_fixtures/flex/align_content_stretch_row_with_padding.html new file mode 100644 index 000000000..e51d8eeca --- /dev/null +++ b/test_fixtures/flex/align_content_stretch_row_with_padding.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_content_stretch_row_with_single_row.html b/test_fixtures/flex/align_content_stretch_row_with_single_row.html new file mode 100644 index 000000000..352260449 --- /dev/null +++ b/test_fixtures/flex/align_content_stretch_row_with_single_row.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_flex_start_with_shrinking_children.html b/test_fixtures/flex/align_flex_start_with_shrinking_children.html new file mode 100644 index 000000000..bb9522168 --- /dev/null +++ b/test_fixtures/flex/align_flex_start_with_shrinking_children.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_flex_start_with_shrinking_children_with_stretch.html b/test_fixtures/flex/align_flex_start_with_shrinking_children_with_stretch.html new file mode 100644 index 000000000..435cd3551 --- /dev/null +++ b/test_fixtures/flex/align_flex_start_with_shrinking_children_with_stretch.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_flex_start_with_stretching_children.html b/test_fixtures/flex/align_flex_start_with_stretching_children.html new file mode 100644 index 000000000..4cdf7cafd --- /dev/null +++ b/test_fixtures/flex/align_flex_start_with_stretching_children.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_items_center.html b/test_fixtures/flex/align_items_center.html new file mode 100644 index 000000000..f18acd192 --- /dev/null +++ b/test_fixtures/flex/align_items_center.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_items_center_child_with_margin_bigger_than_parent.html b/test_fixtures/flex/align_items_center_child_with_margin_bigger_than_parent.html new file mode 100644 index 000000000..1341a070e --- /dev/null +++ b/test_fixtures/flex/align_items_center_child_with_margin_bigger_than_parent.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_items_center_child_without_margin_bigger_than_parent.html b/test_fixtures/flex/align_items_center_child_without_margin_bigger_than_parent.html new file mode 100644 index 000000000..1c2a49ba5 --- /dev/null +++ b/test_fixtures/flex/align_items_center_child_without_margin_bigger_than_parent.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/align_items_center_justify_content_center.html b/test_fixtures/flex/align_items_center_justify_content_center.html similarity index 77% rename from test_fixtures/align_items_center_justify_content_center.html rename to test_fixtures/flex/align_items_center_justify_content_center.html index 9b66649b1..868b75272 100644 --- a/test_fixtures/align_items_center_justify_content_center.html +++ b/test_fixtures/flex/align_items_center_justify_content_center.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/align_items_center_min_max_with_padding.html b/test_fixtures/flex/align_items_center_min_max_with_padding.html new file mode 100644 index 000000000..8364b3899 --- /dev/null +++ b/test_fixtures/flex/align_items_center_min_max_with_padding.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_items_center_with_child_margin.html b/test_fixtures/flex/align_items_center_with_child_margin.html new file mode 100644 index 000000000..067d6d993 --- /dev/null +++ b/test_fixtures/flex/align_items_center_with_child_margin.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_items_center_with_child_top.html b/test_fixtures/flex/align_items_center_with_child_top.html new file mode 100644 index 000000000..5d577dfa0 --- /dev/null +++ b/test_fixtures/flex/align_items_center_with_child_top.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_items_flex_end.html b/test_fixtures/flex/align_items_flex_end.html new file mode 100644 index 000000000..fe0e64eae --- /dev/null +++ b/test_fixtures/flex/align_items_flex_end.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_items_flex_end_child_with_margin_bigger_than_parent.html b/test_fixtures/flex/align_items_flex_end_child_with_margin_bigger_than_parent.html new file mode 100644 index 000000000..87275cfe8 --- /dev/null +++ b/test_fixtures/flex/align_items_flex_end_child_with_margin_bigger_than_parent.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_items_flex_end_child_without_margin_bigger_than_parent.html b/test_fixtures/flex/align_items_flex_end_child_without_margin_bigger_than_parent.html new file mode 100644 index 000000000..b1b8af223 --- /dev/null +++ b/test_fixtures/flex/align_items_flex_end_child_without_margin_bigger_than_parent.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_items_flex_start.html b/test_fixtures/flex/align_items_flex_start.html new file mode 100644 index 000000000..1576afede --- /dev/null +++ b/test_fixtures/flex/align_items_flex_start.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_items_min_max.html b/test_fixtures/flex/align_items_min_max.html new file mode 100644 index 000000000..672d300b4 --- /dev/null +++ b/test_fixtures/flex/align_items_min_max.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_items_stretch.html b/test_fixtures/flex/align_items_stretch.html new file mode 100644 index 000000000..543a29e36 --- /dev/null +++ b/test_fixtures/flex/align_items_stretch.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_items_stretch_min_cross.html b/test_fixtures/flex/align_items_stretch_min_cross.html new file mode 100644 index 000000000..0cf9fe465 --- /dev/null +++ b/test_fixtures/flex/align_items_stretch_min_cross.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_self_baseline.html b/test_fixtures/flex/align_self_baseline.html new file mode 100644 index 000000000..f7ce89657 --- /dev/null +++ b/test_fixtures/flex/align_self_baseline.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_self_center.html b/test_fixtures/flex/align_self_center.html new file mode 100644 index 000000000..13a7489d4 --- /dev/null +++ b/test_fixtures/flex/align_self_center.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_self_center_undefined_max_height.html b/test_fixtures/flex/align_self_center_undefined_max_height.html new file mode 100644 index 000000000..2e124bb93 --- /dev/null +++ b/test_fixtures/flex/align_self_center_undefined_max_height.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_self_flex_end.html b/test_fixtures/flex/align_self_flex_end.html new file mode 100644 index 000000000..08b8ae909 --- /dev/null +++ b/test_fixtures/flex/align_self_flex_end.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_self_flex_end_override_flex_start.html b/test_fixtures/flex/align_self_flex_end_override_flex_start.html new file mode 100644 index 000000000..2013ed24a --- /dev/null +++ b/test_fixtures/flex/align_self_flex_end_override_flex_start.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_self_flex_start.html b/test_fixtures/flex/align_self_flex_start.html new file mode 100644 index 000000000..c73981bc6 --- /dev/null +++ b/test_fixtures/flex/align_self_flex_start.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/align_stretch_should_size_based_on_parent.html b/test_fixtures/flex/align_stretch_should_size_based_on_parent.html new file mode 100644 index 000000000..d694edb50 --- /dev/null +++ b/test_fixtures/flex/align_stretch_should_size_based_on_parent.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/android_news_feed.html b/test_fixtures/flex/android_news_feed.html similarity index 95% rename from test_fixtures/android_news_feed.html rename to test_fixtures/flex/android_news_feed.html index d72436168..75fafe8cc 100644 --- a/test_fixtures/android_news_feed.html +++ b/test_fixtures/flex/android_news_feed.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/aspect_ratio_flex_column_fill_height.html b/test_fixtures/flex/aspect_ratio_flex_column_fill_height.html new file mode 100644 index 000000000..d075aa1b7 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_column_fill_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/aspect_ratio_flex_column_fill_max_height.html b/test_fixtures/flex/aspect_ratio_flex_column_fill_max_height.html similarity index 75% rename from test_fixtures/aspect_ratio_flex_column_fill_max_height.html rename to test_fixtures/flex/aspect_ratio_flex_column_fill_max_height.html index 460c67c12..ce97f4e50 100644 --- a/test_fixtures/aspect_ratio_flex_column_fill_max_height.html +++ b/test_fixtures/flex/aspect_ratio_flex_column_fill_max_height.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/aspect_ratio_flex_column_fill_max_width.html b/test_fixtures/flex/aspect_ratio_flex_column_fill_max_width.html new file mode 100644 index 000000000..5e5c9656a --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_column_fill_max_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_column_fill_min_height.html b/test_fixtures/flex/aspect_ratio_flex_column_fill_min_height.html new file mode 100644 index 000000000..3b33751aa --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_column_fill_min_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_column_fill_min_width.html b/test_fixtures/flex/aspect_ratio_flex_column_fill_min_width.html new file mode 100644 index 000000000..72cffafe5 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_column_fill_min_width.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+ +
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_column_fill_width.html b/test_fixtures/flex/aspect_ratio_flex_column_fill_width.html new file mode 100644 index 000000000..290f19a8b --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_column_fill_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_column_fill_width_flex.html b/test_fixtures/flex/aspect_ratio_flex_column_fill_width_flex.html new file mode 100644 index 000000000..83a554cea --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_column_fill_width_flex.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_column_stretch_fill_height.html b/test_fixtures/flex/aspect_ratio_flex_column_stretch_fill_height.html new file mode 100644 index 000000000..03ba047cd --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_column_stretch_fill_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_column_stretch_fill_max_height.html b/test_fixtures/flex/aspect_ratio_flex_column_stretch_fill_max_height.html new file mode 100644 index 000000000..ea7030307 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_column_stretch_fill_max_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH​HH​HH​HH​HH​HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_column_stretch_fill_max_width.html b/test_fixtures/flex/aspect_ratio_flex_column_stretch_fill_max_width.html new file mode 100644 index 000000000..343cc30bd --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_column_stretch_fill_max_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_column_stretch_fill_width.html b/test_fixtures/flex/aspect_ratio_flex_column_stretch_fill_width.html new file mode 100644 index 000000000..888ed52d0 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_column_stretch_fill_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_row_fill_height.html b/test_fixtures/flex/aspect_ratio_flex_row_fill_height.html new file mode 100644 index 000000000..e58bf56b2 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_row_fill_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_row_fill_max_height.html b/test_fixtures/flex/aspect_ratio_flex_row_fill_max_height.html new file mode 100644 index 000000000..12c5aa4b6 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_row_fill_max_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH​HH​HH​HH​HH​HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_row_fill_max_width.html b/test_fixtures/flex/aspect_ratio_flex_row_fill_max_width.html new file mode 100644 index 000000000..c78f654e1 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_row_fill_max_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_row_fill_min_height.html b/test_fixtures/flex/aspect_ratio_flex_row_fill_min_height.html new file mode 100644 index 000000000..f0c1060f5 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_row_fill_min_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_row_fill_min_width.html b/test_fixtures/flex/aspect_ratio_flex_row_fill_min_width.html new file mode 100644 index 000000000..fdf18dd37 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_row_fill_min_width.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+ +
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_row_fill_width.html b/test_fixtures/flex/aspect_ratio_flex_row_fill_width.html new file mode 100644 index 000000000..f61d14fa4 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_row_fill_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_row_fill_width_flex.html b/test_fixtures/flex/aspect_ratio_flex_row_fill_width_flex.html new file mode 100644 index 000000000..268e0cc99 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_row_fill_width_flex.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_row_stretch_fill_height.html b/test_fixtures/flex/aspect_ratio_flex_row_stretch_fill_height.html new file mode 100644 index 000000000..8d195319e --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_row_stretch_fill_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_row_stretch_fill_max_height.html b/test_fixtures/flex/aspect_ratio_flex_row_stretch_fill_max_height.html new file mode 100644 index 000000000..ecc38e262 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_row_stretch_fill_max_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH​HH​HH​HH​HH​HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_row_stretch_fill_max_width.html b/test_fixtures/flex/aspect_ratio_flex_row_stretch_fill_max_width.html new file mode 100644 index 000000000..63d843861 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_row_stretch_fill_max_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/aspect_ratio_flex_row_stretch_fill_width.html b/test_fixtures/flex/aspect_ratio_flex_row_stretch_fill_width.html new file mode 100644 index 000000000..0af8a6470 --- /dev/null +++ b/test_fixtures/flex/aspect_ratio_flex_row_stretch_fill_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/bevy_issue_7976_3_level.html b/test_fixtures/flex/bevy_issue_7976_3_level.html new file mode 100644 index 000000000..c5d933e21 --- /dev/null +++ b/test_fixtures/flex/bevy_issue_7976_3_level.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/bevy_issue_7976_4_level.html b/test_fixtures/flex/bevy_issue_7976_4_level.html new file mode 100644 index 000000000..7bf2b694c --- /dev/null +++ b/test_fixtures/flex/bevy_issue_7976_4_level.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/bevy_issue_7976_reduced.html b/test_fixtures/flex/bevy_issue_7976_reduced.html new file mode 100644 index 000000000..836d87c7c --- /dev/null +++ b/test_fixtures/flex/bevy_issue_7976_reduced.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/bevy_issue_8017.html b/test_fixtures/flex/bevy_issue_8017.html similarity index 79% rename from test_fixtures/bevy_issue_8017.html rename to test_fixtures/flex/bevy_issue_8017.html index ab2bea245..0939e3f50 100644 --- a/test_fixtures/bevy_issue_8017.html +++ b/test_fixtures/flex/bevy_issue_8017.html @@ -1,8 +1,8 @@ - - + + Bevy #8017 diff --git a/test_fixtures/flex/bevy_issue_8017_reduced.html b/test_fixtures/flex/bevy_issue_8017_reduced.html new file mode 100644 index 000000000..c5c7569ad --- /dev/null +++ b/test_fixtures/flex/bevy_issue_8017_reduced.html @@ -0,0 +1,22 @@ + + + + + + + Bevy #8017 + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/bevy_issue_8082.html b/test_fixtures/flex/bevy_issue_8082.html similarity index 80% rename from test_fixtures/bevy_issue_8082.html rename to test_fixtures/flex/bevy_issue_8082.html index 76e4cbd76..5f6961173 100644 --- a/test_fixtures/bevy_issue_8082.html +++ b/test_fixtures/flex/bevy_issue_8082.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/bevy_issue_8082_percent.html b/test_fixtures/flex/bevy_issue_8082_percent.html similarity index 79% rename from test_fixtures/bevy_issue_8082_percent.html rename to test_fixtures/flex/bevy_issue_8082_percent.html index 545692107..23310f9d4 100644 --- a/test_fixtures/bevy_issue_8082_percent.html +++ b/test_fixtures/flex/bevy_issue_8082_percent.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/bevy_issue_9530.html b/test_fixtures/flex/bevy_issue_9530.html similarity index 95% rename from test_fixtures/bevy_issue_9530.html rename to test_fixtures/flex/bevy_issue_9530.html index 4b346eb59..d59c2e913 100644 --- a/test_fixtures/bevy_issue_9530.html +++ b/test_fixtures/flex/bevy_issue_9530.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/bevy_issue_9530_reduced.html b/test_fixtures/flex/bevy_issue_9530_reduced.html new file mode 100644 index 000000000..8656d4f62 --- /dev/null +++ b/test_fixtures/flex/bevy_issue_9530_reduced.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
HH​HH​HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/bevy_issue_9530_reduced2.html b/test_fixtures/flex/bevy_issue_9530_reduced2.html new file mode 100644 index 000000000..ec2b5041c --- /dev/null +++ b/test_fixtures/flex/bevy_issue_9530_reduced2.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
HH​HH​HH​HH​HH​HH​HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/bevy_issue_9530_reduced3.html b/test_fixtures/flex/bevy_issue_9530_reduced3.html new file mode 100644 index 000000000..586dbeff4 --- /dev/null +++ b/test_fixtures/flex/bevy_issue_9530_reduced3.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH​HH​HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/bevy_issue_9530_reduced4.html b/test_fixtures/flex/bevy_issue_9530_reduced4.html new file mode 100644 index 000000000..533fa678f --- /dev/null +++ b/test_fixtures/flex/bevy_issue_9530_reduced4.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH​HH​HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/border_center_child.html b/test_fixtures/flex/border_center_child.html new file mode 100644 index 000000000..03878bc3f --- /dev/null +++ b/test_fixtures/flex/border_center_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/border_container_match_child.html b/test_fixtures/flex/border_container_match_child.html new file mode 100644 index 000000000..7af1ef5af --- /dev/null +++ b/test_fixtures/flex/border_container_match_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/border_flex_child.html b/test_fixtures/flex/border_flex_child.html new file mode 100644 index 000000000..868609690 --- /dev/null +++ b/test_fixtures/flex/border_flex_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/border_no_child.html b/test_fixtures/flex/border_no_child.html new file mode 100644 index 000000000..bee7ac101 --- /dev/null +++ b/test_fixtures/flex/border_no_child.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/border_no_size.html b/test_fixtures/flex/border_no_size.html new file mode 100644 index 000000000..a97bac179 --- /dev/null +++ b/test_fixtures/flex/border_no_size.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/border_stretch_child.html b/test_fixtures/flex/border_stretch_child.html new file mode 100644 index 000000000..ffdc39474 --- /dev/null +++ b/test_fixtures/flex/border_stretch_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/child_min_max_width_flexing.html b/test_fixtures/flex/child_min_max_width_flexing.html new file mode 100644 index 000000000..fbd3e1955 --- /dev/null +++ b/test_fixtures/flex/child_min_max_width_flexing.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/child_with_padding_align_end.html b/test_fixtures/flex/child_with_padding_align_end.html new file mode 100644 index 000000000..48ba5b2c6 --- /dev/null +++ b/test_fixtures/flex/child_with_padding_align_end.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/container_with_unsized_child.html b/test_fixtures/flex/container_with_unsized_child.html new file mode 100644 index 000000000..87049f1e0 --- /dev/null +++ b/test_fixtures/flex/container_with_unsized_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/display_none.html b/test_fixtures/flex/display_none.html new file mode 100644 index 000000000..9d059a10d --- /dev/null +++ b/test_fixtures/flex/display_none.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/display_none_absolute_child.html b/test_fixtures/flex/display_none_absolute_child.html new file mode 100644 index 000000000..eaeb93509 --- /dev/null +++ b/test_fixtures/flex/display_none_absolute_child.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/display_none_fixed_size.html b/test_fixtures/flex/display_none_fixed_size.html new file mode 100644 index 000000000..6ce2e8d5d --- /dev/null +++ b/test_fixtures/flex/display_none_fixed_size.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/display_none_only_node.html b/test_fixtures/flex/display_none_only_node.html new file mode 100644 index 000000000..8d5d60bdd --- /dev/null +++ b/test_fixtures/flex/display_none_only_node.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + + + + + \ No newline at end of file diff --git a/test_fixtures/flex/display_none_with_child.html b/test_fixtures/flex/display_none_with_child.html new file mode 100644 index 000000000..032e2c6eb --- /dev/null +++ b/test_fixtures/flex/display_none_with_child.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/display_none_with_margin.html b/test_fixtures/flex/display_none_with_margin.html new file mode 100644 index 000000000..1f2ea4dbe --- /dev/null +++ b/test_fixtures/flex/display_none_with_margin.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/display_none_with_position.html b/test_fixtures/flex/display_none_with_position.html new file mode 100644 index 000000000..7409d41bf --- /dev/null +++ b/test_fixtures/flex/display_none_with_position.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/display_none_with_position_absolute.html b/test_fixtures/flex/display_none_with_position_absolute.html new file mode 100644 index 000000000..2a799e0f0 --- /dev/null +++ b/test_fixtures/flex/display_none_with_position_absolute.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/do_not_clamp_height_of_absolute_node_to_height_of_its_overflow_hidden_parent.html b/test_fixtures/flex/do_not_clamp_height_of_absolute_node_to_height_of_its_overflow_hidden_parent.html new file mode 100644 index 000000000..7c80db8c5 --- /dev/null +++ b/test_fixtures/flex/do_not_clamp_height_of_absolute_node_to_height_of_its_overflow_hidden_parent.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_and_main_dimen_set_when_flexing.html b/test_fixtures/flex/flex_basis_and_main_dimen_set_when_flexing.html new file mode 100644 index 000000000..17b2aa0d3 --- /dev/null +++ b/test_fixtures/flex/flex_basis_and_main_dimen_set_when_flexing.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_flex_grow_column.html b/test_fixtures/flex/flex_basis_flex_grow_column.html new file mode 100644 index 000000000..fdea23309 --- /dev/null +++ b/test_fixtures/flex/flex_basis_flex_grow_column.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_flex_grow_row.html b/test_fixtures/flex/flex_basis_flex_grow_row.html new file mode 100644 index 000000000..3ea91131f --- /dev/null +++ b/test_fixtures/flex/flex_basis_flex_grow_row.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_flex_shrink_column.html b/test_fixtures/flex/flex_basis_flex_shrink_column.html new file mode 100644 index 000000000..29c8c1201 --- /dev/null +++ b/test_fixtures/flex/flex_basis_flex_shrink_column.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_flex_shrink_row.html b/test_fixtures/flex/flex_basis_flex_shrink_row.html new file mode 100644 index 000000000..3113a75e4 --- /dev/null +++ b/test_fixtures/flex/flex_basis_flex_shrink_row.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_larger_than_content_column.html b/test_fixtures/flex/flex_basis_larger_than_content_column.html new file mode 100644 index 000000000..38fe82407 --- /dev/null +++ b/test_fixtures/flex/flex_basis_larger_than_content_column.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_larger_than_content_row.html b/test_fixtures/flex/flex_basis_larger_than_content_row.html new file mode 100644 index 000000000..cd30b3369 --- /dev/null +++ b/test_fixtures/flex/flex_basis_larger_than_content_row.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_overrides_main_size.html b/test_fixtures/flex/flex_basis_overrides_main_size.html new file mode 100644 index 000000000..790abd788 --- /dev/null +++ b/test_fixtures/flex/flex_basis_overrides_main_size.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_slightly_smaller_then_content_with_flex_grow_large_size.html b/test_fixtures/flex/flex_basis_slightly_smaller_then_content_with_flex_grow_large_size.html new file mode 100644 index 000000000..4423cf7b2 --- /dev/null +++ b/test_fixtures/flex/flex_basis_slightly_smaller_then_content_with_flex_grow_large_size.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_smaller_than_content_column.html b/test_fixtures/flex/flex_basis_smaller_than_content_column.html new file mode 100644 index 000000000..ff422694e --- /dev/null +++ b/test_fixtures/flex/flex_basis_smaller_than_content_column.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_smaller_than_content_row.html b/test_fixtures/flex/flex_basis_smaller_than_content_row.html new file mode 100644 index 000000000..09bb7a9f2 --- /dev/null +++ b/test_fixtures/flex/flex_basis_smaller_than_content_row.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_smaller_than_main_dimen_column.html b/test_fixtures/flex/flex_basis_smaller_than_main_dimen_column.html new file mode 100644 index 000000000..f73ecc5c8 --- /dev/null +++ b/test_fixtures/flex/flex_basis_smaller_than_main_dimen_column.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_smaller_than_main_dimen_row.html b/test_fixtures/flex/flex_basis_smaller_than_main_dimen_row.html new file mode 100644 index 000000000..7c8b54dbf --- /dev/null +++ b/test_fixtures/flex/flex_basis_smaller_than_main_dimen_row.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_smaller_then_content_with_flex_grow_large_size.html b/test_fixtures/flex/flex_basis_smaller_then_content_with_flex_grow_large_size.html new file mode 100644 index 000000000..98e4881c6 --- /dev/null +++ b/test_fixtures/flex/flex_basis_smaller_then_content_with_flex_grow_large_size.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_smaller_then_content_with_flex_grow_small_size.html b/test_fixtures/flex/flex_basis_smaller_then_content_with_flex_grow_small_size.html new file mode 100644 index 000000000..65c78b2f6 --- /dev/null +++ b/test_fixtures/flex/flex_basis_smaller_then_content_with_flex_grow_small_size.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_smaller_then_content_with_flex_grow_unconstraint_size.html b/test_fixtures/flex/flex_basis_smaller_then_content_with_flex_grow_unconstraint_size.html new file mode 100644 index 000000000..1b09e6ac5 --- /dev/null +++ b/test_fixtures/flex/flex_basis_smaller_then_content_with_flex_grow_unconstraint_size.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_smaller_then_content_with_flex_grow_very_large_size.html b/test_fixtures/flex/flex_basis_smaller_then_content_with_flex_grow_very_large_size.html new file mode 100644 index 000000000..bb96628b8 --- /dev/null +++ b/test_fixtures/flex/flex_basis_smaller_then_content_with_flex_grow_very_large_size.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_unconstraint_column.html b/test_fixtures/flex/flex_basis_unconstraint_column.html new file mode 100644 index 000000000..f267907d7 --- /dev/null +++ b/test_fixtures/flex/flex_basis_unconstraint_column.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_unconstraint_row.html b/test_fixtures/flex/flex_basis_unconstraint_row.html new file mode 100644 index 000000000..b1c885a2f --- /dev/null +++ b/test_fixtures/flex/flex_basis_unconstraint_row.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_basis_zero_undefined_main_size.html b/test_fixtures/flex/flex_basis_zero_undefined_main_size.html new file mode 100644 index 000000000..db116daa8 --- /dev/null +++ b/test_fixtures/flex/flex_basis_zero_undefined_main_size.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_column_relative_all_sides.html b/test_fixtures/flex/flex_column_relative_all_sides.html new file mode 100644 index 000000000..93f77203d --- /dev/null +++ b/test_fixtures/flex/flex_column_relative_all_sides.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_direction_column.html b/test_fixtures/flex/flex_direction_column.html new file mode 100644 index 000000000..5140bc134 --- /dev/null +++ b/test_fixtures/flex/flex_direction_column.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_direction_column_no_height.html b/test_fixtures/flex/flex_direction_column_no_height.html new file mode 100644 index 000000000..2a95296b5 --- /dev/null +++ b/test_fixtures/flex/flex_direction_column_no_height.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_direction_column_reverse.html b/test_fixtures/flex/flex_direction_column_reverse.html new file mode 100644 index 000000000..b0f2a932b --- /dev/null +++ b/test_fixtures/flex/flex_direction_column_reverse.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_direction_column_reverse_no_height.html b/test_fixtures/flex/flex_direction_column_reverse_no_height.html new file mode 100644 index 000000000..3cedeb1aa --- /dev/null +++ b/test_fixtures/flex/flex_direction_column_reverse_no_height.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_direction_row.html b/test_fixtures/flex/flex_direction_row.html new file mode 100644 index 000000000..b86c652ee --- /dev/null +++ b/test_fixtures/flex/flex_direction_row.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_direction_row_no_width.html b/test_fixtures/flex/flex_direction_row_no_width.html new file mode 100644 index 000000000..48fbbfb48 --- /dev/null +++ b/test_fixtures/flex/flex_direction_row_no_width.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_direction_row_reverse.html b/test_fixtures/flex/flex_direction_row_reverse.html new file mode 100644 index 000000000..217a39604 --- /dev/null +++ b/test_fixtures/flex/flex_direction_row_reverse.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_child.html b/test_fixtures/flex/flex_grow_child.html new file mode 100644 index 000000000..c8fe1e72a --- /dev/null +++ b/test_fixtures/flex/flex_grow_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_flex_basis_percent_min_max.html b/test_fixtures/flex/flex_grow_flex_basis_percent_min_max.html new file mode 100644 index 000000000..b4e5667c3 --- /dev/null +++ b/test_fixtures/flex/flex_grow_flex_basis_percent_min_max.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_height_maximized.html b/test_fixtures/flex/flex_grow_height_maximized.html new file mode 100644 index 000000000..fea3954d7 --- /dev/null +++ b/test_fixtures/flex/flex_grow_height_maximized.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_in_at_most_container.html b/test_fixtures/flex/flex_grow_in_at_most_container.html new file mode 100644 index 000000000..0d753ab53 --- /dev/null +++ b/test_fixtures/flex/flex_grow_in_at_most_container.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_less_than_factor_one.html b/test_fixtures/flex/flex_grow_less_than_factor_one.html new file mode 100644 index 000000000..544827008 --- /dev/null +++ b/test_fixtures/flex/flex_grow_less_than_factor_one.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_root_minimized.html b/test_fixtures/flex/flex_grow_root_minimized.html new file mode 100644 index 000000000..313d13650 --- /dev/null +++ b/test_fixtures/flex/flex_grow_root_minimized.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_shrink_at_most.html b/test_fixtures/flex/flex_grow_shrink_at_most.html new file mode 100644 index 000000000..0a5e493d7 --- /dev/null +++ b/test_fixtures/flex/flex_grow_shrink_at_most.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_to_min.html b/test_fixtures/flex/flex_grow_to_min.html new file mode 100644 index 000000000..5f374d029 --- /dev/null +++ b/test_fixtures/flex/flex_grow_to_min.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_within_constrained_max_column.html b/test_fixtures/flex/flex_grow_within_constrained_max_column.html new file mode 100644 index 000000000..0d20dc233 --- /dev/null +++ b/test_fixtures/flex/flex_grow_within_constrained_max_column.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_within_constrained_max_row.html b/test_fixtures/flex/flex_grow_within_constrained_max_row.html new file mode 100644 index 000000000..4c2e5fc9d --- /dev/null +++ b/test_fixtures/flex/flex_grow_within_constrained_max_row.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_within_constrained_max_width.html b/test_fixtures/flex/flex_grow_within_constrained_max_width.html new file mode 100644 index 000000000..546163cc9 --- /dev/null +++ b/test_fixtures/flex/flex_grow_within_constrained_max_width.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_within_constrained_min_column.html b/test_fixtures/flex/flex_grow_within_constrained_min_column.html new file mode 100644 index 000000000..9781e8bd9 --- /dev/null +++ b/test_fixtures/flex/flex_grow_within_constrained_min_column.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_within_constrained_min_max_column.html b/test_fixtures/flex/flex_grow_within_constrained_min_max_column.html new file mode 100644 index 000000000..9272537ea --- /dev/null +++ b/test_fixtures/flex/flex_grow_within_constrained_min_max_column.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_within_constrained_min_row.html b/test_fixtures/flex/flex_grow_within_constrained_min_row.html new file mode 100644 index 000000000..c5c602d81 --- /dev/null +++ b/test_fixtures/flex/flex_grow_within_constrained_min_row.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_grow_within_max_width.html b/test_fixtures/flex/flex_grow_within_max_width.html new file mode 100644 index 000000000..a94a706a7 --- /dev/null +++ b/test_fixtures/flex/flex_grow_within_max_width.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_root_ignored.html b/test_fixtures/flex/flex_root_ignored.html new file mode 100644 index 000000000..dfcad2b10 --- /dev/null +++ b/test_fixtures/flex/flex_root_ignored.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_row_relative_all_sides.html b/test_fixtures/flex/flex_row_relative_all_sides.html new file mode 100644 index 000000000..139c5b005 --- /dev/null +++ b/test_fixtures/flex/flex_row_relative_all_sides.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_shrink_by_outer_margin_with_max_size.html b/test_fixtures/flex/flex_shrink_by_outer_margin_with_max_size.html new file mode 100644 index 000000000..fc4979e4b --- /dev/null +++ b/test_fixtures/flex/flex_shrink_by_outer_margin_with_max_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_shrink_flex_grow_child_flex_shrink_other_child.html b/test_fixtures/flex/flex_shrink_flex_grow_child_flex_shrink_other_child.html new file mode 100644 index 000000000..6775b8aac --- /dev/null +++ b/test_fixtures/flex/flex_shrink_flex_grow_child_flex_shrink_other_child.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_shrink_flex_grow_row.html b/test_fixtures/flex/flex_shrink_flex_grow_row.html new file mode 100644 index 000000000..9284541b2 --- /dev/null +++ b/test_fixtures/flex/flex_shrink_flex_grow_row.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_shrink_to_zero.html b/test_fixtures/flex/flex_shrink_to_zero.html new file mode 100644 index 000000000..95046a41b --- /dev/null +++ b/test_fixtures/flex/flex_shrink_to_zero.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_wrap_align_stretch_fits_one_row.html b/test_fixtures/flex/flex_wrap_align_stretch_fits_one_row.html new file mode 100644 index 000000000..e832634ae --- /dev/null +++ b/test_fixtures/flex/flex_wrap_align_stretch_fits_one_row.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_wrap_children_with_min_main_overriding_flex_basis.html b/test_fixtures/flex/flex_wrap_children_with_min_main_overriding_flex_basis.html new file mode 100644 index 000000000..2dfcd8e03 --- /dev/null +++ b/test_fixtures/flex/flex_wrap_children_with_min_main_overriding_flex_basis.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/flex_wrap_wrap_to_child_height.html b/test_fixtures/flex/flex_wrap_wrap_to_child_height.html new file mode 100644 index 000000000..ab31cd221 --- /dev/null +++ b/test_fixtures/flex/flex_wrap_wrap_to_child_height.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_child_margins.html b/test_fixtures/flex/gap_column_gap_child_margins.html new file mode 100644 index 000000000..36388b311 --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_child_margins.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_determines_parent_width.html b/test_fixtures/flex/gap_column_gap_determines_parent_width.html new file mode 100644 index 000000000..1e786f648 --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_determines_parent_width.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_flexible.html b/test_fixtures/flex/gap_column_gap_flexible.html new file mode 100644 index 000000000..a39bb5aa4 --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_flexible.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_flexible_undefined_parent.html b/test_fixtures/flex/gap_column_gap_flexible_undefined_parent.html new file mode 100644 index 000000000..8e264026a --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_flexible_undefined_parent.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_inflexible.html b/test_fixtures/flex/gap_column_gap_inflexible.html new file mode 100644 index 000000000..3c6384140 --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_inflexible.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_inflexible_undefined_parent.html b/test_fixtures/flex/gap_column_gap_inflexible_undefined_parent.html new file mode 100644 index 000000000..96fa79332 --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_inflexible_undefined_parent.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_justify_center.html b/test_fixtures/flex/gap_column_gap_justify_center.html new file mode 100644 index 000000000..8bb719560 --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_justify_center.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_justify_flex_end.html b/test_fixtures/flex/gap_column_gap_justify_flex_end.html new file mode 100644 index 000000000..d14b09f5f --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_justify_flex_end.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_justify_flex_start.html b/test_fixtures/flex/gap_column_gap_justify_flex_start.html new file mode 100644 index 000000000..e81827d09 --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_justify_flex_start.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_justify_space_around.html b/test_fixtures/flex/gap_column_gap_justify_space_around.html new file mode 100644 index 000000000..f8666fc77 --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_justify_space_around.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_justify_space_between.html b/test_fixtures/flex/gap_column_gap_justify_space_between.html new file mode 100644 index 000000000..9d407ceba --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_justify_space_between.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_justify_space_evenly.html b/test_fixtures/flex/gap_column_gap_justify_space_evenly.html new file mode 100644 index 000000000..911a0dd83 --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_justify_space_evenly.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_mixed_flexible.html b/test_fixtures/flex/gap_column_gap_mixed_flexible.html new file mode 100644 index 000000000..5882dee91 --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_mixed_flexible.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_percentage_cyclic_partially_shrinkable.html b/test_fixtures/flex/gap_column_gap_percentage_cyclic_partially_shrinkable.html new file mode 100644 index 000000000..b3191412c --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_percentage_cyclic_partially_shrinkable.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_percentage_cyclic_shrinkable.html b/test_fixtures/flex/gap_column_gap_percentage_cyclic_shrinkable.html new file mode 100644 index 000000000..bd385c017 --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_percentage_cyclic_shrinkable.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_percentage_cyclic_unshrinkable.html b/test_fixtures/flex/gap_column_gap_percentage_cyclic_unshrinkable.html new file mode 100644 index 000000000..185c3709f --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_percentage_cyclic_unshrinkable.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_percentage_flexible.html b/test_fixtures/flex/gap_column_gap_percentage_flexible.html new file mode 100644 index 000000000..57a756f6a --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_percentage_flexible.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_percentage_flexible_with_padding.html b/test_fixtures/flex/gap_column_gap_percentage_flexible_with_padding.html new file mode 100644 index 000000000..01c77f9fd --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_percentage_flexible_with_padding.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_column_gap_percentage_inflexible.html b/test_fixtures/flex/gap_column_gap_percentage_inflexible.html new file mode 100644 index 000000000..59bfb1435 --- /dev/null +++ b/test_fixtures/flex/gap_column_gap_percentage_inflexible.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_row_gap_wrapping.html b/test_fixtures/flex/gap_column_gap_row_gap_wrapping.html similarity index 81% rename from test_fixtures/gap_column_gap_row_gap_wrapping.html rename to test_fixtures/flex/gap_column_gap_row_gap_wrapping.html index c8c4a7a24..1b0cef09e 100644 --- a/test_fixtures/gap_column_gap_row_gap_wrapping.html +++ b/test_fixtures/flex/gap_column_gap_row_gap_wrapping.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/gap_column_gap_wrap_align_center.html b/test_fixtures/flex/gap_column_gap_wrap_align_center.html similarity index 78% rename from test_fixtures/gap_column_gap_wrap_align_center.html rename to test_fixtures/flex/gap_column_gap_wrap_align_center.html index a701f9649..63c6af74a 100644 --- a/test_fixtures/gap_column_gap_wrap_align_center.html +++ b/test_fixtures/flex/gap_column_gap_wrap_align_center.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/gap_column_gap_wrap_align_flex_end.html b/test_fixtures/flex/gap_column_gap_wrap_align_flex_end.html similarity index 78% rename from test_fixtures/gap_column_gap_wrap_align_flex_end.html rename to test_fixtures/flex/gap_column_gap_wrap_align_flex_end.html index 6a612cf14..7039ec750 100644 --- a/test_fixtures/gap_column_gap_wrap_align_flex_end.html +++ b/test_fixtures/flex/gap_column_gap_wrap_align_flex_end.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/gap_column_gap_wrap_align_flex_start.html b/test_fixtures/flex/gap_column_gap_wrap_align_flex_start.html similarity index 78% rename from test_fixtures/gap_column_gap_wrap_align_flex_start.html rename to test_fixtures/flex/gap_column_gap_wrap_align_flex_start.html index b2c6c6667..2417562a0 100644 --- a/test_fixtures/gap_column_gap_wrap_align_flex_start.html +++ b/test_fixtures/flex/gap_column_gap_wrap_align_flex_start.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/gap_column_gap_wrap_align_space_around.html b/test_fixtures/flex/gap_column_gap_wrap_align_space_around.html similarity index 78% rename from test_fixtures/gap_column_gap_wrap_align_space_around.html rename to test_fixtures/flex/gap_column_gap_wrap_align_space_around.html index 80627658f..29dadb425 100644 --- a/test_fixtures/gap_column_gap_wrap_align_space_around.html +++ b/test_fixtures/flex/gap_column_gap_wrap_align_space_around.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/gap_column_gap_wrap_align_space_between.html b/test_fixtures/flex/gap_column_gap_wrap_align_space_between.html similarity index 78% rename from test_fixtures/gap_column_gap_wrap_align_space_between.html rename to test_fixtures/flex/gap_column_gap_wrap_align_space_between.html index b2d0ad56a..27e882d93 100644 --- a/test_fixtures/gap_column_gap_wrap_align_space_between.html +++ b/test_fixtures/flex/gap_column_gap_wrap_align_space_between.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/gap_column_gap_wrap_align_stretch.html b/test_fixtures/flex/gap_column_gap_wrap_align_stretch.html similarity index 77% rename from test_fixtures/gap_column_gap_wrap_align_stretch.html rename to test_fixtures/flex/gap_column_gap_wrap_align_stretch.html index b2713477c..c743ebdf4 100644 --- a/test_fixtures/gap_column_gap_wrap_align_stretch.html +++ b/test_fixtures/flex/gap_column_gap_wrap_align_stretch.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/gap_column_row_gap_wrapping.html b/test_fixtures/flex/gap_column_row_gap_wrapping.html similarity index 81% rename from test_fixtures/gap_column_row_gap_wrapping.html rename to test_fixtures/flex/gap_column_row_gap_wrapping.html index c8c4a7a24..1b0cef09e 100644 --- a/test_fixtures/gap_column_row_gap_wrapping.html +++ b/test_fixtures/flex/gap_column_row_gap_wrapping.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/gap_row_gap_align_items_end.html b/test_fixtures/flex/gap_row_gap_align_items_end.html similarity index 75% rename from test_fixtures/gap_row_gap_align_items_end.html rename to test_fixtures/flex/gap_row_gap_align_items_end.html index b1f780ea6..99dddfd65 100644 --- a/test_fixtures/gap_row_gap_align_items_end.html +++ b/test_fixtures/flex/gap_row_gap_align_items_end.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/gap_row_gap_align_items_stretch.html b/test_fixtures/flex/gap_row_gap_align_items_stretch.html similarity index 76% rename from test_fixtures/gap_row_gap_align_items_stretch.html rename to test_fixtures/flex/gap_row_gap_align_items_stretch.html index 7e32c78ae..3cf4f49c0 100644 --- a/test_fixtures/gap_row_gap_align_items_stretch.html +++ b/test_fixtures/flex/gap_row_gap_align_items_stretch.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/gap_row_gap_column_child_margins.html b/test_fixtures/flex/gap_row_gap_column_child_margins.html new file mode 100644 index 000000000..265e7ce22 --- /dev/null +++ b/test_fixtures/flex/gap_row_gap_column_child_margins.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/gap_row_gap_determines_parent_height.html b/test_fixtures/flex/gap_row_gap_determines_parent_height.html new file mode 100644 index 000000000..9f03f75cd --- /dev/null +++ b/test_fixtures/flex/gap_row_gap_determines_parent_height.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/gap_row_gap_percentage_wrapping.html b/test_fixtures/flex/gap_row_gap_percentage_wrapping.html similarity index 81% rename from test_fixtures/gap_row_gap_percentage_wrapping.html rename to test_fixtures/flex/gap_row_gap_percentage_wrapping.html index 06a618b07..71357ef2b 100644 --- a/test_fixtures/gap_row_gap_percentage_wrapping.html +++ b/test_fixtures/flex/gap_row_gap_percentage_wrapping.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/gap_row_gap_row_wrap_child_margins.html b/test_fixtures/flex/gap_row_gap_row_wrap_child_margins.html new file mode 100644 index 000000000..67cc3c75f --- /dev/null +++ b/test_fixtures/flex/gap_row_gap_row_wrap_child_margins.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/intrinsic_sizing_cross_size_column.html b/test_fixtures/flex/intrinsic_sizing_cross_size_column.html new file mode 100644 index 000000000..f3215abfd --- /dev/null +++ b/test_fixtures/flex/intrinsic_sizing_cross_size_column.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
HH​HH
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/intrinsic_sizing_main_size_column.html b/test_fixtures/flex/intrinsic_sizing_main_size_column.html new file mode 100644 index 000000000..9162415e2 --- /dev/null +++ b/test_fixtures/flex/intrinsic_sizing_main_size_column.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
HH​HH
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/intrinsic_sizing_main_size_column_nested.html b/test_fixtures/flex/intrinsic_sizing_main_size_column_nested.html new file mode 100644 index 000000000..913564e99 --- /dev/null +++ b/test_fixtures/flex/intrinsic_sizing_main_size_column_nested.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/intrinsic_sizing_main_size_column_wrap.html b/test_fixtures/flex/intrinsic_sizing_main_size_column_wrap.html new file mode 100644 index 000000000..e78fdad6c --- /dev/null +++ b/test_fixtures/flex/intrinsic_sizing_main_size_column_wrap.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/intrinsic_sizing_main_size_row.html b/test_fixtures/flex/intrinsic_sizing_main_size_row.html new file mode 100644 index 000000000..8b3bb55ee --- /dev/null +++ b/test_fixtures/flex/intrinsic_sizing_main_size_row.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
HH​HH
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/intrinsic_sizing_main_size_row_nested.html b/test_fixtures/flex/intrinsic_sizing_main_size_row_nested.html new file mode 100644 index 000000000..dc84d55c8 --- /dev/null +++ b/test_fixtures/flex/intrinsic_sizing_main_size_row_nested.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/intrinsic_sizing_main_size_row_wrap.html b/test_fixtures/flex/intrinsic_sizing_main_size_row_wrap.html new file mode 100644 index 000000000..4cf123763 --- /dev/null +++ b/test_fixtures/flex/intrinsic_sizing_main_size_row_wrap.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_column_center.html b/test_fixtures/flex/justify_content_column_center.html new file mode 100644 index 000000000..87e35e2fd --- /dev/null +++ b/test_fixtures/flex/justify_content_column_center.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_column_flex_end.html b/test_fixtures/flex/justify_content_column_flex_end.html new file mode 100644 index 000000000..b09f342ae --- /dev/null +++ b/test_fixtures/flex/justify_content_column_flex_end.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_column_flex_start.html b/test_fixtures/flex/justify_content_column_flex_start.html new file mode 100644 index 000000000..614be6b79 --- /dev/null +++ b/test_fixtures/flex/justify_content_column_flex_start.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/justify_content_column_max_height_and_margin.html b/test_fixtures/flex/justify_content_column_max_height_and_margin.html similarity index 77% rename from test_fixtures/justify_content_column_max_height_and_margin.html rename to test_fixtures/flex/justify_content_column_max_height_and_margin.html index f4c156119..49c87909d 100644 --- a/test_fixtures/justify_content_column_max_height_and_margin.html +++ b/test_fixtures/flex/justify_content_column_max_height_and_margin.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/justify_content_column_min_height_and_margin.html b/test_fixtures/flex/justify_content_column_min_height_and_margin.html similarity index 77% rename from test_fixtures/justify_content_column_min_height_and_margin.html rename to test_fixtures/flex/justify_content_column_min_height_and_margin.html index 03c2d9d91..5ebbc393b 100644 --- a/test_fixtures/justify_content_column_min_height_and_margin.html +++ b/test_fixtures/flex/justify_content_column_min_height_and_margin.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/justify_content_column_min_height_and_margin_bottom.html b/test_fixtures/flex/justify_content_column_min_height_and_margin_bottom.html new file mode 100644 index 000000000..fb4360f5a --- /dev/null +++ b/test_fixtures/flex/justify_content_column_min_height_and_margin_bottom.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_column_min_height_and_margin_top.html b/test_fixtures/flex/justify_content_column_min_height_and_margin_top.html new file mode 100644 index 000000000..c113b9971 --- /dev/null +++ b/test_fixtures/flex/justify_content_column_min_height_and_margin_top.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_column_space_around.html b/test_fixtures/flex/justify_content_column_space_around.html new file mode 100644 index 000000000..576d3cfdb --- /dev/null +++ b/test_fixtures/flex/justify_content_column_space_around.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_column_space_between.html b/test_fixtures/flex/justify_content_column_space_between.html new file mode 100644 index 000000000..b3e7a290b --- /dev/null +++ b/test_fixtures/flex/justify_content_column_space_between.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_column_space_evenly.html b/test_fixtures/flex/justify_content_column_space_evenly.html new file mode 100644 index 000000000..539b15091 --- /dev/null +++ b/test_fixtures/flex/justify_content_column_space_evenly.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_min_max.html b/test_fixtures/flex/justify_content_min_max.html new file mode 100644 index 000000000..e3481cf4e --- /dev/null +++ b/test_fixtures/flex/justify_content_min_max.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/justify_content_min_width_with_padding_child_width_greater_than_parent.html b/test_fixtures/flex/justify_content_min_width_with_padding_child_width_greater_than_parent.html similarity index 78% rename from test_fixtures/justify_content_min_width_with_padding_child_width_greater_than_parent.html rename to test_fixtures/flex/justify_content_min_width_with_padding_child_width_greater_than_parent.html index 012934004..857ed020a 100644 --- a/test_fixtures/justify_content_min_width_with_padding_child_width_greater_than_parent.html +++ b/test_fixtures/flex/justify_content_min_width_with_padding_child_width_greater_than_parent.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/justify_content_min_width_with_padding_child_width_lower_than_parent.html b/test_fixtures/flex/justify_content_min_width_with_padding_child_width_lower_than_parent.html similarity index 78% rename from test_fixtures/justify_content_min_width_with_padding_child_width_lower_than_parent.html rename to test_fixtures/flex/justify_content_min_width_with_padding_child_width_lower_than_parent.html index e985e54b8..64d8b0cee 100644 --- a/test_fixtures/justify_content_min_width_with_padding_child_width_lower_than_parent.html +++ b/test_fixtures/flex/justify_content_min_width_with_padding_child_width_lower_than_parent.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/justify_content_overflow_min_max.html b/test_fixtures/flex/justify_content_overflow_min_max.html new file mode 100644 index 000000000..066b7c3b7 --- /dev/null +++ b/test_fixtures/flex/justify_content_overflow_min_max.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_row_center.html b/test_fixtures/flex/justify_content_row_center.html new file mode 100644 index 000000000..ce4067958 --- /dev/null +++ b/test_fixtures/flex/justify_content_row_center.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_row_flex_end.html b/test_fixtures/flex/justify_content_row_flex_end.html new file mode 100644 index 000000000..4e86fecb0 --- /dev/null +++ b/test_fixtures/flex/justify_content_row_flex_end.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_row_flex_start.html b/test_fixtures/flex/justify_content_row_flex_start.html new file mode 100644 index 000000000..b889c0a06 --- /dev/null +++ b/test_fixtures/flex/justify_content_row_flex_start.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_row_max_width_and_margin.html b/test_fixtures/flex/justify_content_row_max_width_and_margin.html new file mode 100644 index 000000000..8ec058c67 --- /dev/null +++ b/test_fixtures/flex/justify_content_row_max_width_and_margin.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_row_min_width_and_margin.html b/test_fixtures/flex/justify_content_row_min_width_and_margin.html new file mode 100644 index 000000000..036545918 --- /dev/null +++ b/test_fixtures/flex/justify_content_row_min_width_and_margin.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_row_space_around.html b/test_fixtures/flex/justify_content_row_space_around.html new file mode 100644 index 000000000..c789d369c --- /dev/null +++ b/test_fixtures/flex/justify_content_row_space_around.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_row_space_between.html b/test_fixtures/flex/justify_content_row_space_between.html new file mode 100644 index 000000000..777a659a7 --- /dev/null +++ b/test_fixtures/flex/justify_content_row_space_between.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/justify_content_row_space_evenly.html b/test_fixtures/flex/justify_content_row_space_evenly.html new file mode 100644 index 000000000..b70da1df1 --- /dev/null +++ b/test_fixtures/flex/justify_content_row_space_evenly.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_and_flex_column.html b/test_fixtures/flex/margin_and_flex_column.html new file mode 100644 index 000000000..317bc0d5e --- /dev/null +++ b/test_fixtures/flex/margin_and_flex_column.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_and_flex_row.html b/test_fixtures/flex/margin_and_flex_row.html new file mode 100644 index 000000000..2c2a50a06 --- /dev/null +++ b/test_fixtures/flex/margin_and_flex_row.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_and_stretch_column.html b/test_fixtures/flex/margin_and_stretch_column.html new file mode 100644 index 000000000..c3dd42655 --- /dev/null +++ b/test_fixtures/flex/margin_and_stretch_column.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_and_stretch_row.html b/test_fixtures/flex/margin_and_stretch_row.html new file mode 100644 index 000000000..181fac45a --- /dev/null +++ b/test_fixtures/flex/margin_and_stretch_row.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_bottom.html b/test_fixtures/flex/margin_auto_bottom.html new file mode 100644 index 000000000..8d21f99b1 --- /dev/null +++ b/test_fixtures/flex/margin_auto_bottom.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_bottom_and_top.html b/test_fixtures/flex/margin_auto_bottom_and_top.html new file mode 100644 index 000000000..72809942b --- /dev/null +++ b/test_fixtures/flex/margin_auto_bottom_and_top.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_bottom_and_top_justify_center.html b/test_fixtures/flex/margin_auto_bottom_and_top_justify_center.html new file mode 100644 index 000000000..6a262514e --- /dev/null +++ b/test_fixtures/flex/margin_auto_bottom_and_top_justify_center.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_left.html b/test_fixtures/flex/margin_auto_left.html new file mode 100644 index 000000000..aa455bd8d --- /dev/null +++ b/test_fixtures/flex/margin_auto_left.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_left_and_right.html b/test_fixtures/flex/margin_auto_left_and_right.html new file mode 100644 index 000000000..9df2f48ed --- /dev/null +++ b/test_fixtures/flex/margin_auto_left_and_right.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_left_and_right_column.html b/test_fixtures/flex/margin_auto_left_and_right_column.html new file mode 100644 index 000000000..bb2e53dab --- /dev/null +++ b/test_fixtures/flex/margin_auto_left_and_right_column.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_left_and_right_column_and_center.html b/test_fixtures/flex/margin_auto_left_and_right_column_and_center.html new file mode 100644 index 000000000..55a220cb9 --- /dev/null +++ b/test_fixtures/flex/margin_auto_left_and_right_column_and_center.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_left_and_right_stretch.html b/test_fixtures/flex/margin_auto_left_and_right_stretch.html new file mode 100644 index 000000000..4068cc553 --- /dev/null +++ b/test_fixtures/flex/margin_auto_left_and_right_stretch.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_left_child_bigger_than_parent.html b/test_fixtures/flex/margin_auto_left_child_bigger_than_parent.html new file mode 100644 index 000000000..e187e8221 --- /dev/null +++ b/test_fixtures/flex/margin_auto_left_child_bigger_than_parent.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_left_fix_right_child_bigger_than_parent.html b/test_fixtures/flex/margin_auto_left_fix_right_child_bigger_than_parent.html new file mode 100644 index 000000000..409819a8b --- /dev/null +++ b/test_fixtures/flex/margin_auto_left_fix_right_child_bigger_than_parent.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_left_right_child_bigger_than_parent.html b/test_fixtures/flex/margin_auto_left_right_child_bigger_than_parent.html new file mode 100644 index 000000000..5a0f57a8f --- /dev/null +++ b/test_fixtures/flex/margin_auto_left_right_child_bigger_than_parent.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_left_stretching_child.html b/test_fixtures/flex/margin_auto_left_stretching_child.html new file mode 100644 index 000000000..7e767e207 --- /dev/null +++ b/test_fixtures/flex/margin_auto_left_stretching_child.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_mutiple_children_column.html b/test_fixtures/flex/margin_auto_mutiple_children_column.html new file mode 100644 index 000000000..0120b1a4d --- /dev/null +++ b/test_fixtures/flex/margin_auto_mutiple_children_column.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_mutiple_children_row.html b/test_fixtures/flex/margin_auto_mutiple_children_row.html new file mode 100644 index 000000000..189ea563d --- /dev/null +++ b/test_fixtures/flex/margin_auto_mutiple_children_row.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_right.html b/test_fixtures/flex/margin_auto_right.html new file mode 100644 index 000000000..abf5bcd90 --- /dev/null +++ b/test_fixtures/flex/margin_auto_right.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_top.html b/test_fixtures/flex/margin_auto_top.html new file mode 100644 index 000000000..20adebabf --- /dev/null +++ b/test_fixtures/flex/margin_auto_top.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_top_and_bottom_stretch.html b/test_fixtures/flex/margin_auto_top_and_bottom_stretch.html new file mode 100644 index 000000000..db718d364 --- /dev/null +++ b/test_fixtures/flex/margin_auto_top_and_bottom_stretch.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_auto_top_stretching_child.html b/test_fixtures/flex/margin_auto_top_stretching_child.html new file mode 100644 index 000000000..8793ab101 --- /dev/null +++ b/test_fixtures/flex/margin_auto_top_stretching_child.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_bottom.html b/test_fixtures/flex/margin_bottom.html new file mode 100644 index 000000000..cf99c6e8b --- /dev/null +++ b/test_fixtures/flex/margin_bottom.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_fix_left_auto_right_child_bigger_than_parent.html b/test_fixtures/flex/margin_fix_left_auto_right_child_bigger_than_parent.html new file mode 100644 index 000000000..ad2fe0ca5 --- /dev/null +++ b/test_fixtures/flex/margin_fix_left_auto_right_child_bigger_than_parent.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_left.html b/test_fixtures/flex/margin_left.html new file mode 100644 index 000000000..76a80f0bb --- /dev/null +++ b/test_fixtures/flex/margin_left.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_right.html b/test_fixtures/flex/margin_right.html new file mode 100644 index 000000000..13ffb9777 --- /dev/null +++ b/test_fixtures/flex/margin_right.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_should_not_be_part_of_max_height.html b/test_fixtures/flex/margin_should_not_be_part_of_max_height.html new file mode 100644 index 000000000..ab0a18684 --- /dev/null +++ b/test_fixtures/flex/margin_should_not_be_part_of_max_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_should_not_be_part_of_max_width.html b/test_fixtures/flex/margin_should_not_be_part_of_max_width.html new file mode 100644 index 000000000..456036fe5 --- /dev/null +++ b/test_fixtures/flex/margin_should_not_be_part_of_max_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_top.html b/test_fixtures/flex/margin_top.html new file mode 100644 index 000000000..ab443cad4 --- /dev/null +++ b/test_fixtures/flex/margin_top.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_with_sibling_column.html b/test_fixtures/flex/margin_with_sibling_column.html new file mode 100644 index 000000000..8335317c3 --- /dev/null +++ b/test_fixtures/flex/margin_with_sibling_column.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/margin_with_sibling_row.html b/test_fixtures/flex/margin_with_sibling_row.html new file mode 100644 index 000000000..b4f276c89 --- /dev/null +++ b/test_fixtures/flex/margin_with_sibling_row.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/max_height.html b/test_fixtures/flex/max_height.html new file mode 100644 index 000000000..9b26ce27e --- /dev/null +++ b/test_fixtures/flex/max_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/max_height_overrides_height.html b/test_fixtures/flex/max_height_overrides_height.html new file mode 100644 index 000000000..67445b2a6 --- /dev/null +++ b/test_fixtures/flex/max_height_overrides_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/max_height_overrides_height_on_root.html b/test_fixtures/flex/max_height_overrides_height_on_root.html new file mode 100644 index 000000000..77a441152 --- /dev/null +++ b/test_fixtures/flex/max_height_overrides_height_on_root.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/max_width.html b/test_fixtures/flex/max_width.html new file mode 100644 index 000000000..a09bc37d4 --- /dev/null +++ b/test_fixtures/flex/max_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/max_width_overrides_width.html b/test_fixtures/flex/max_width_overrides_width.html new file mode 100644 index 000000000..07b57fef2 --- /dev/null +++ b/test_fixtures/flex/max_width_overrides_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/max_width_overrides_width_on_root.html b/test_fixtures/flex/max_width_overrides_width_on_root.html new file mode 100644 index 000000000..a7e021dd4 --- /dev/null +++ b/test_fixtures/flex/max_width_overrides_width_on_root.html @@ -0,0 +1,16 @@ + + + + + + + Test description + + + + +
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_child.html b/test_fixtures/flex/measure_child.html new file mode 100644 index 000000000..08bbdbefd --- /dev/null +++ b/test_fixtures/flex/measure_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_child_absolute.html b/test_fixtures/flex/measure_child_absolute.html new file mode 100644 index 000000000..691e848df --- /dev/null +++ b/test_fixtures/flex/measure_child_absolute.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_child_constraint.html b/test_fixtures/flex/measure_child_constraint.html new file mode 100644 index 000000000..83582f57b --- /dev/null +++ b/test_fixtures/flex/measure_child_constraint.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_child_constraint_padding_parent.html b/test_fixtures/flex/measure_child_constraint_padding_parent.html new file mode 100644 index 000000000..21f9ed3bb --- /dev/null +++ b/test_fixtures/flex/measure_child_constraint_padding_parent.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_child_with_flex_grow.html b/test_fixtures/flex/measure_child_with_flex_grow.html new file mode 100644 index 000000000..d1448fd5f --- /dev/null +++ b/test_fixtures/flex/measure_child_with_flex_grow.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
H​H​H​H​H
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_child_with_flex_shrink.html b/test_fixtures/flex/measure_child_with_flex_shrink.html new file mode 100644 index 000000000..b1d31b007 --- /dev/null +++ b/test_fixtures/flex/measure_child_with_flex_shrink.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_child_with_flex_shrink_hidden.html b/test_fixtures/flex/measure_child_with_flex_shrink_hidden.html new file mode 100644 index 000000000..5f4362b1d --- /dev/null +++ b/test_fixtures/flex/measure_child_with_flex_shrink_hidden.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_child_with_min_size_greater_than_available_space.html b/test_fixtures/flex/measure_child_with_min_size_greater_than_available_space.html new file mode 100644 index 000000000..af7ab4536 --- /dev/null +++ b/test_fixtures/flex/measure_child_with_min_size_greater_than_available_space.html @@ -0,0 +1,14 @@ + + + + + + + Test description + + + + +
+
HHHHHHHH​HHHHHHHH
+
diff --git a/test_fixtures/flex/measure_flex_basis_overrides_measure.html b/test_fixtures/flex/measure_flex_basis_overrides_measure.html new file mode 100644 index 000000000..ec257be3e --- /dev/null +++ b/test_fixtures/flex/measure_flex_basis_overrides_measure.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
H
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_height_overrides_measure.html b/test_fixtures/flex/measure_height_overrides_measure.html new file mode 100644 index 000000000..0783b5028 --- /dev/null +++ b/test_fixtures/flex/measure_height_overrides_measure.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
H
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_remeasure_child_after_growing.html b/test_fixtures/flex/measure_remeasure_child_after_growing.html new file mode 100644 index 000000000..9e6a8c46a --- /dev/null +++ b/test_fixtures/flex/measure_remeasure_child_after_growing.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_remeasure_child_after_shrinking.html b/test_fixtures/flex/measure_remeasure_child_after_shrinking.html new file mode 100644 index 000000000..bceac54e3 --- /dev/null +++ b/test_fixtures/flex/measure_remeasure_child_after_shrinking.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_remeasure_child_after_stretching.html b/test_fixtures/flex/measure_remeasure_child_after_stretching.html new file mode 100644 index 000000000..5042278ea --- /dev/null +++ b/test_fixtures/flex/measure_remeasure_child_after_stretching.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_root.html b/test_fixtures/flex/measure_root.html new file mode 100644 index 000000000..c17ab5ab3 --- /dev/null +++ b/test_fixtures/flex/measure_root.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
HHHHHH
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_stretch_overrides_measure.html b/test_fixtures/flex/measure_stretch_overrides_measure.html new file mode 100644 index 000000000..d4586cb96 --- /dev/null +++ b/test_fixtures/flex/measure_stretch_overrides_measure.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
H
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/measure_width_overrides_measure.html b/test_fixtures/flex/measure_width_overrides_measure.html new file mode 100644 index 000000000..1884930ee --- /dev/null +++ b/test_fixtures/flex/measure_width_overrides_measure.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHHHHHHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/min_height.html b/test_fixtures/flex/min_height.html new file mode 100644 index 000000000..42d28f996 --- /dev/null +++ b/test_fixtures/flex/min_height.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/min_height_larger_than_height.html b/test_fixtures/flex/min_height_larger_than_height.html new file mode 100644 index 000000000..2ade51f6f --- /dev/null +++ b/test_fixtures/flex/min_height_larger_than_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/min_height_overrides_height.html b/test_fixtures/flex/min_height_overrides_height.html new file mode 100644 index 000000000..906c8fbce --- /dev/null +++ b/test_fixtures/flex/min_height_overrides_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/min_height_overrides_height_on_root.html b/test_fixtures/flex/min_height_overrides_height_on_root.html new file mode 100644 index 000000000..2ccb01b97 --- /dev/null +++ b/test_fixtures/flex/min_height_overrides_height_on_root.html @@ -0,0 +1,16 @@ + + + + + + + Test description + + + + +
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/min_height_overrides_max_height.html b/test_fixtures/flex/min_height_overrides_max_height.html new file mode 100644 index 000000000..ac7ae014d --- /dev/null +++ b/test_fixtures/flex/min_height_overrides_max_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/min_height_with_nested_fixed_height.html b/test_fixtures/flex/min_height_with_nested_fixed_height.html new file mode 100644 index 000000000..24557fea2 --- /dev/null +++ b/test_fixtures/flex/min_height_with_nested_fixed_height.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/min_max_percent_different_width_height.html b/test_fixtures/flex/min_max_percent_different_width_height.html new file mode 100644 index 000000000..4b1e8fec0 --- /dev/null +++ b/test_fixtures/flex/min_max_percent_different_width_height.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/min_max_percent_no_width_height.html b/test_fixtures/flex/min_max_percent_no_width_height.html new file mode 100644 index 000000000..c7f5afd10 --- /dev/null +++ b/test_fixtures/flex/min_max_percent_no_width_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/min_width.html b/test_fixtures/flex/min_width.html new file mode 100644 index 000000000..4ea4a845f --- /dev/null +++ b/test_fixtures/flex/min_width.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/min_width_larger_than_width.html b/test_fixtures/flex/min_width_larger_than_width.html new file mode 100644 index 000000000..dc54ad157 --- /dev/null +++ b/test_fixtures/flex/min_width_larger_than_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/min_width_overrides_max_width.html b/test_fixtures/flex/min_width_overrides_max_width.html new file mode 100644 index 000000000..e1d416b43 --- /dev/null +++ b/test_fixtures/flex/min_width_overrides_max_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/min_width_overrides_width.html b/test_fixtures/flex/min_width_overrides_width.html new file mode 100644 index 000000000..80107f3ad --- /dev/null +++ b/test_fixtures/flex/min_width_overrides_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/min_width_overrides_width_on_root.html b/test_fixtures/flex/min_width_overrides_width_on_root.html new file mode 100644 index 000000000..07686063d --- /dev/null +++ b/test_fixtures/flex/min_width_overrides_width_on_root.html @@ -0,0 +1,16 @@ + + + + + + + Test description + + + + +
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/nested_overflowing_child.html b/test_fixtures/flex/nested_overflowing_child.html new file mode 100644 index 000000000..45e90251b --- /dev/null +++ b/test_fixtures/flex/nested_overflowing_child.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/nested_overflowing_child_in_constraint_parent.html b/test_fixtures/flex/nested_overflowing_child_in_constraint_parent.html new file mode 100644 index 000000000..f593cbd38 --- /dev/null +++ b/test_fixtures/flex/nested_overflowing_child_in_constraint_parent.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/only_shrinkable_item_with_flex_basis_zero.html b/test_fixtures/flex/only_shrinkable_item_with_flex_basis_zero.html new file mode 100644 index 000000000..541f55756 --- /dev/null +++ b/test_fixtures/flex/only_shrinkable_item_with_flex_basis_zero.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/overflow_cross_axis.html b/test_fixtures/flex/overflow_cross_axis.html new file mode 100644 index 000000000..78ff4d228 --- /dev/null +++ b/test_fixtures/flex/overflow_cross_axis.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/overflow_main_axis.html b/test_fixtures/flex/overflow_main_axis.html new file mode 100644 index 000000000..ee0077510 --- /dev/null +++ b/test_fixtures/flex/overflow_main_axis.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/overflow_main_axis_shrink_hidden.html b/test_fixtures/flex/overflow_main_axis_shrink_hidden.html new file mode 100644 index 000000000..ca2afb57a --- /dev/null +++ b/test_fixtures/flex/overflow_main_axis_shrink_hidden.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHHHHHHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/overflow_main_axis_shrink_scroll.html b/test_fixtures/flex/overflow_main_axis_shrink_scroll.html new file mode 100644 index 000000000..746b5ac7d --- /dev/null +++ b/test_fixtures/flex/overflow_main_axis_shrink_scroll.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHHHHHHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/overflow_main_axis_shrink_visible.html b/test_fixtures/flex/overflow_main_axis_shrink_visible.html new file mode 100644 index 000000000..9a9f45017 --- /dev/null +++ b/test_fixtures/flex/overflow_main_axis_shrink_visible.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHHHHHHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/overflow_scroll_main_axis_justify_content_end.html b/test_fixtures/flex/overflow_scroll_main_axis_justify_content_end.html new file mode 100644 index 000000000..2f59bd4dd --- /dev/null +++ b/test_fixtures/flex/overflow_scroll_main_axis_justify_content_end.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/overflow_scrollbars_overriden_by_available_space.html b/test_fixtures/flex/overflow_scrollbars_overriden_by_available_space.html new file mode 100644 index 000000000..0a9836e31 --- /dev/null +++ b/test_fixtures/flex/overflow_scrollbars_overriden_by_available_space.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/overflow_scrollbars_overriden_by_max_size.html b/test_fixtures/flex/overflow_scrollbars_overriden_by_max_size.html new file mode 100644 index 000000000..95dfab88a --- /dev/null +++ b/test_fixtures/flex/overflow_scrollbars_overriden_by_max_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/overflow_scrollbars_overriden_by_size.html b/test_fixtures/flex/overflow_scrollbars_overriden_by_size.html new file mode 100644 index 000000000..567fcd937 --- /dev/null +++ b/test_fixtures/flex/overflow_scrollbars_overriden_by_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/overflow_scrollbars_take_up_space_both_axis.html b/test_fixtures/flex/overflow_scrollbars_take_up_space_both_axis.html new file mode 100644 index 000000000..60816e5e9 --- /dev/null +++ b/test_fixtures/flex/overflow_scrollbars_take_up_space_both_axis.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/overflow_scrollbars_take_up_space_cross_axis.html b/test_fixtures/flex/overflow_scrollbars_take_up_space_cross_axis.html new file mode 100644 index 000000000..64fa6c646 --- /dev/null +++ b/test_fixtures/flex/overflow_scrollbars_take_up_space_cross_axis.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/overflow_scrollbars_take_up_space_main_axis.html b/test_fixtures/flex/overflow_scrollbars_take_up_space_main_axis.html new file mode 100644 index 000000000..9254b8627 --- /dev/null +++ b/test_fixtures/flex/overflow_scrollbars_take_up_space_main_axis.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/padding_align_end_child.html b/test_fixtures/flex/padding_align_end_child.html new file mode 100644 index 000000000..b26fe9e1d --- /dev/null +++ b/test_fixtures/flex/padding_align_end_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/padding_border_overrides_max_size.html b/test_fixtures/flex/padding_border_overrides_max_size.html new file mode 100644 index 000000000..531c83f2d --- /dev/null +++ b/test_fixtures/flex/padding_border_overrides_max_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/padding_border_overrides_min_size.html b/test_fixtures/flex/padding_border_overrides_min_size.html new file mode 100644 index 000000000..1230eada2 --- /dev/null +++ b/test_fixtures/flex/padding_border_overrides_min_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/padding_border_overrides_size.html b/test_fixtures/flex/padding_border_overrides_size.html new file mode 100644 index 000000000..d4fbfdb9f --- /dev/null +++ b/test_fixtures/flex/padding_border_overrides_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/padding_border_overrides_size_flex_basis_0.html b/test_fixtures/flex/padding_border_overrides_size_flex_basis_0.html new file mode 100644 index 000000000..f219a00dc --- /dev/null +++ b/test_fixtures/flex/padding_border_overrides_size_flex_basis_0.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/padding_border_overrides_size_flex_basis_0_growable.html b/test_fixtures/flex/padding_border_overrides_size_flex_basis_0_growable.html new file mode 100644 index 000000000..38f6a9bd3 --- /dev/null +++ b/test_fixtures/flex/padding_border_overrides_size_flex_basis_0_growable.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/padding_center_child.html b/test_fixtures/flex/padding_center_child.html new file mode 100644 index 000000000..040c54cd3 --- /dev/null +++ b/test_fixtures/flex/padding_center_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/padding_container_match_child.html b/test_fixtures/flex/padding_container_match_child.html new file mode 100644 index 000000000..0e0c83955 --- /dev/null +++ b/test_fixtures/flex/padding_container_match_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/padding_flex_child.html b/test_fixtures/flex/padding_flex_child.html new file mode 100644 index 000000000..6248736fe --- /dev/null +++ b/test_fixtures/flex/padding_flex_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/padding_no_child.html b/test_fixtures/flex/padding_no_child.html new file mode 100644 index 000000000..8c42d6f19 --- /dev/null +++ b/test_fixtures/flex/padding_no_child.html @@ -0,0 +1,16 @@ + + + + + + + Test description + + + + +
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/padding_no_size.html b/test_fixtures/flex/padding_no_size.html new file mode 100644 index 000000000..303301591 --- /dev/null +++ b/test_fixtures/flex/padding_no_size.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/padding_stretch_child.html b/test_fixtures/flex/padding_stretch_child.html new file mode 100644 index 000000000..d7024644e --- /dev/null +++ b/test_fixtures/flex/padding_stretch_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/parent_wrap_child_size_overflowing_parent.html b/test_fixtures/flex/parent_wrap_child_size_overflowing_parent.html new file mode 100644 index 000000000..0d7dc47f3 --- /dev/null +++ b/test_fixtures/flex/parent_wrap_child_size_overflowing_parent.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percent_absolute_position.html b/test_fixtures/flex/percent_absolute_position.html new file mode 100644 index 000000000..4f7aa5ecf --- /dev/null +++ b/test_fixtures/flex/percent_absolute_position.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percent_within_flex_grow.html b/test_fixtures/flex/percent_within_flex_grow.html new file mode 100644 index 000000000..8f5f00ce6 --- /dev/null +++ b/test_fixtures/flex/percent_within_flex_grow.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_absolute_position.html b/test_fixtures/flex/percentage_absolute_position.html new file mode 100644 index 000000000..b1c472144 --- /dev/null +++ b/test_fixtures/flex/percentage_absolute_position.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/percentage_container_in_wrapping_container.html b/test_fixtures/flex/percentage_container_in_wrapping_container.html similarity index 76% rename from test_fixtures/percentage_container_in_wrapping_container.html rename to test_fixtures/flex/percentage_container_in_wrapping_container.html index 2d4d74cae..878605498 100644 --- a/test_fixtures/percentage_container_in_wrapping_container.html +++ b/test_fixtures/flex/percentage_container_in_wrapping_container.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/percentage_different_width_height.html b/test_fixtures/flex/percentage_different_width_height.html new file mode 100644 index 000000000..f16c53942 --- /dev/null +++ b/test_fixtures/flex/percentage_different_width_height.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_different_width_height_column.html b/test_fixtures/flex/percentage_different_width_height_column.html new file mode 100644 index 000000000..ab25cea93 --- /dev/null +++ b/test_fixtures/flex/percentage_different_width_height_column.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_flex_basis.html b/test_fixtures/flex/percentage_flex_basis.html new file mode 100644 index 000000000..379d85b6a --- /dev/null +++ b/test_fixtures/flex/percentage_flex_basis.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_flex_basis_cross.html b/test_fixtures/flex/percentage_flex_basis_cross.html new file mode 100644 index 000000000..ef222100e --- /dev/null +++ b/test_fixtures/flex/percentage_flex_basis_cross.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_flex_basis_cross_max_height.html b/test_fixtures/flex/percentage_flex_basis_cross_max_height.html new file mode 100644 index 000000000..7bf7e7e35 --- /dev/null +++ b/test_fixtures/flex/percentage_flex_basis_cross_max_height.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_flex_basis_cross_max_width.html b/test_fixtures/flex/percentage_flex_basis_cross_max_width.html new file mode 100644 index 000000000..fa0b80570 --- /dev/null +++ b/test_fixtures/flex/percentage_flex_basis_cross_max_width.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_flex_basis_cross_min_height.html b/test_fixtures/flex/percentage_flex_basis_cross_min_height.html new file mode 100644 index 000000000..59a4e3154 --- /dev/null +++ b/test_fixtures/flex/percentage_flex_basis_cross_min_height.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_flex_basis_cross_min_width.html b/test_fixtures/flex/percentage_flex_basis_cross_min_width.html new file mode 100644 index 000000000..7ec4b3836 --- /dev/null +++ b/test_fixtures/flex/percentage_flex_basis_cross_min_width.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_flex_basis_main_max_height.html b/test_fixtures/flex/percentage_flex_basis_main_max_height.html new file mode 100644 index 000000000..f0aed5b72 --- /dev/null +++ b/test_fixtures/flex/percentage_flex_basis_main_max_height.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_flex_basis_main_max_width.html b/test_fixtures/flex/percentage_flex_basis_main_max_width.html new file mode 100644 index 000000000..64c6ce873 --- /dev/null +++ b/test_fixtures/flex/percentage_flex_basis_main_max_width.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_flex_basis_main_min_width.html b/test_fixtures/flex/percentage_flex_basis_main_min_width.html new file mode 100644 index 000000000..2694cc580 --- /dev/null +++ b/test_fixtures/flex/percentage_flex_basis_main_min_width.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_main_max_height.html b/test_fixtures/flex/percentage_main_max_height.html new file mode 100644 index 000000000..7eed3aae8 --- /dev/null +++ b/test_fixtures/flex/percentage_main_max_height.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_margin_should_calculate_based_only_on_width.html b/test_fixtures/flex/percentage_margin_should_calculate_based_only_on_width.html new file mode 100644 index 000000000..0b8f2f141 --- /dev/null +++ b/test_fixtures/flex/percentage_margin_should_calculate_based_only_on_width.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_moderate_complexity.html b/test_fixtures/flex/percentage_moderate_complexity.html new file mode 100644 index 000000000..4a978aa2e --- /dev/null +++ b/test_fixtures/flex/percentage_moderate_complexity.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_moderate_complexity2.html b/test_fixtures/flex/percentage_moderate_complexity2.html new file mode 100644 index 000000000..b3f5e15d1 --- /dev/null +++ b/test_fixtures/flex/percentage_moderate_complexity2.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/percentage_multiple_nested_with_padding_margin_and_percentage_values.html b/test_fixtures/flex/percentage_multiple_nested_with_padding_margin_and_percentage_values.html similarity index 78% rename from test_fixtures/percentage_multiple_nested_with_padding_margin_and_percentage_values.html rename to test_fixtures/flex/percentage_multiple_nested_with_padding_margin_and_percentage_values.html index d0d13ff25..4855d7eec 100644 --- a/test_fixtures/percentage_multiple_nested_with_padding_margin_and_percentage_values.html +++ b/test_fixtures/flex/percentage_multiple_nested_with_padding_margin_and_percentage_values.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/percentage_padding_should_calculate_based_only_on_width.html b/test_fixtures/flex/percentage_padding_should_calculate_based_only_on_width.html new file mode 100644 index 000000000..2532bf3d6 --- /dev/null +++ b/test_fixtures/flex/percentage_padding_should_calculate_based_only_on_width.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_position_bottom_right.html b/test_fixtures/flex/percentage_position_bottom_right.html new file mode 100644 index 000000000..33808903a --- /dev/null +++ b/test_fixtures/flex/percentage_position_bottom_right.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_position_left_top.html b/test_fixtures/flex/percentage_position_left_top.html new file mode 100644 index 000000000..446d62038 --- /dev/null +++ b/test_fixtures/flex/percentage_position_left_top.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_size_based_on_parent_inner_size.html b/test_fixtures/flex/percentage_size_based_on_parent_inner_size.html new file mode 100644 index 000000000..34be9ed02 --- /dev/null +++ b/test_fixtures/flex/percentage_size_based_on_parent_inner_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_size_of_flex_basis.html b/test_fixtures/flex/percentage_size_of_flex_basis.html new file mode 100644 index 000000000..178c64c55 --- /dev/null +++ b/test_fixtures/flex/percentage_size_of_flex_basis.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_sizes_should_not_prevent_flex_shrinking.html b/test_fixtures/flex/percentage_sizes_should_not_prevent_flex_shrinking.html new file mode 100644 index 000000000..20d0229ef --- /dev/null +++ b/test_fixtures/flex/percentage_sizes_should_not_prevent_flex_shrinking.html @@ -0,0 +1,19 @@ + + + + + + + Bevy #8017 + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_width_height.html b/test_fixtures/flex/percentage_width_height.html new file mode 100644 index 000000000..f7497d10d --- /dev/null +++ b/test_fixtures/flex/percentage_width_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/percentage_width_height_undefined_parent_size.html b/test_fixtures/flex/percentage_width_height_undefined_parent_size.html new file mode 100644 index 000000000..6d2b78698 --- /dev/null +++ b/test_fixtures/flex/percentage_width_height_undefined_parent_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/position_root_with_rtl_should_position_withoutdirection.html b/test_fixtures/flex/position_root_with_rtl_should_position_withoutdirection.html new file mode 100644 index 000000000..3334859e5 --- /dev/null +++ b/test_fixtures/flex/position_root_with_rtl_should_position_withoutdirection.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/relative_position_should_not_nudge_siblings.html b/test_fixtures/flex/relative_position_should_not_nudge_siblings.html new file mode 100644 index 000000000..26a76d7e8 --- /dev/null +++ b/test_fixtures/flex/relative_position_should_not_nudge_siblings.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/rounding_flex_basis_flex_grow_row_prime_number_width.html b/test_fixtures/flex/rounding_flex_basis_flex_grow_row_prime_number_width.html new file mode 100644 index 000000000..2c86775e3 --- /dev/null +++ b/test_fixtures/flex/rounding_flex_basis_flex_grow_row_prime_number_width.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/rounding_flex_basis_flex_grow_row_width_of_100.html b/test_fixtures/flex/rounding_flex_basis_flex_grow_row_width_of_100.html new file mode 100644 index 000000000..ddd610c90 --- /dev/null +++ b/test_fixtures/flex/rounding_flex_basis_flex_grow_row_width_of_100.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/rounding_flex_basis_flex_shrink_row.html b/test_fixtures/flex/rounding_flex_basis_flex_shrink_row.html new file mode 100644 index 000000000..8958277be --- /dev/null +++ b/test_fixtures/flex/rounding_flex_basis_flex_shrink_row.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/rounding_flex_basis_overrides_main_size.html b/test_fixtures/flex/rounding_flex_basis_overrides_main_size.html new file mode 100644 index 000000000..24ce47130 --- /dev/null +++ b/test_fixtures/flex/rounding_flex_basis_overrides_main_size.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/rounding_fractial_input_1.html b/test_fixtures/flex/rounding_fractial_input_1.html new file mode 100644 index 000000000..bc61da26b --- /dev/null +++ b/test_fixtures/flex/rounding_fractial_input_1.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/rounding_fractial_input_2.html b/test_fixtures/flex/rounding_fractial_input_2.html new file mode 100644 index 000000000..d8c29428d --- /dev/null +++ b/test_fixtures/flex/rounding_fractial_input_2.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/rounding_fractial_input_3.html b/test_fixtures/flex/rounding_fractial_input_3.html new file mode 100644 index 000000000..bc61da26b --- /dev/null +++ b/test_fixtures/flex/rounding_fractial_input_3.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/rounding_fractial_input_4.html b/test_fixtures/flex/rounding_fractial_input_4.html new file mode 100644 index 000000000..bc61da26b --- /dev/null +++ b/test_fixtures/flex/rounding_fractial_input_4.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/rounding_fractial_input_5.html b/test_fixtures/flex/rounding_fractial_input_5.html new file mode 100644 index 000000000..8dd858cb8 --- /dev/null +++ b/test_fixtures/flex/rounding_fractial_input_5.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/rounding_fractial_input_6.html b/test_fixtures/flex/rounding_fractial_input_6.html similarity index 78% rename from test_fixtures/rounding_fractial_input_6.html rename to test_fixtures/flex/rounding_fractial_input_6.html index 24b71c4b5..0e15f3cad 100644 --- a/test_fixtures/rounding_fractial_input_6.html +++ b/test_fixtures/flex/rounding_fractial_input_6.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/rounding_fractial_input_7.html b/test_fixtures/flex/rounding_fractial_input_7.html similarity index 86% rename from test_fixtures/rounding_fractial_input_7.html rename to test_fixtures/flex/rounding_fractial_input_7.html index 0210852ef..1d1046e6f 100644 --- a/test_fixtures/rounding_fractial_input_7.html +++ b/test_fixtures/flex/rounding_fractial_input_7.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/rounding_inner_node_controversy_combined.html b/test_fixtures/flex/rounding_inner_node_controversy_combined.html similarity index 79% rename from test_fixtures/rounding_inner_node_controversy_combined.html rename to test_fixtures/flex/rounding_inner_node_controversy_combined.html index 5eae46413..64f04ce42 100644 --- a/test_fixtures/rounding_inner_node_controversy_combined.html +++ b/test_fixtures/flex/rounding_inner_node_controversy_combined.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/rounding_inner_node_controversy_horizontal.html b/test_fixtures/flex/rounding_inner_node_controversy_horizontal.html new file mode 100644 index 000000000..6d1dce0d7 --- /dev/null +++ b/test_fixtures/flex/rounding_inner_node_controversy_horizontal.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/rounding_inner_node_controversy_vertical.html b/test_fixtures/flex/rounding_inner_node_controversy_vertical.html new file mode 100644 index 000000000..524e9fe60 --- /dev/null +++ b/test_fixtures/flex/rounding_inner_node_controversy_vertical.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/rounding_total_fractial.html b/test_fixtures/flex/rounding_total_fractial.html new file mode 100644 index 000000000..f1b9beed2 --- /dev/null +++ b/test_fixtures/flex/rounding_total_fractial.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/rounding_total_fractial_nested.html b/test_fixtures/flex/rounding_total_fractial_nested.html similarity index 79% rename from test_fixtures/rounding_total_fractial_nested.html rename to test_fixtures/flex/rounding_total_fractial_nested.html index c78e1f06d..b2da605d1 100644 --- a/test_fixtures/rounding_total_fractial_nested.html +++ b/test_fixtures/flex/rounding_total_fractial_nested.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/simple_child.html b/test_fixtures/flex/simple_child.html similarity index 77% rename from test_fixtures/simple_child.html rename to test_fixtures/flex/simple_child.html index bfb9fdc01..f321fea00 100644 --- a/test_fixtures/simple_child.html +++ b/test_fixtures/flex/simple_child.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/single_flex_child_after_absolute_child.html b/test_fixtures/flex/single_flex_child_after_absolute_child.html new file mode 100644 index 000000000..f8f542beb --- /dev/null +++ b/test_fixtures/flex/single_flex_child_after_absolute_child.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/size_defined_by_child.html b/test_fixtures/flex/size_defined_by_child.html new file mode 100644 index 000000000..a6e0cdbd0 --- /dev/null +++ b/test_fixtures/flex/size_defined_by_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/size_defined_by_child_with_border.html b/test_fixtures/flex/size_defined_by_child_with_border.html new file mode 100644 index 000000000..6d3f0ce85 --- /dev/null +++ b/test_fixtures/flex/size_defined_by_child_with_border.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/size_defined_by_child_with_padding.html b/test_fixtures/flex/size_defined_by_child_with_padding.html new file mode 100644 index 000000000..1a622e8cb --- /dev/null +++ b/test_fixtures/flex/size_defined_by_child_with_padding.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/size_defined_by_grand_child.html b/test_fixtures/flex/size_defined_by_grand_child.html new file mode 100644 index 000000000..c02b321e2 --- /dev/null +++ b/test_fixtures/flex/size_defined_by_grand_child.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/undefined_height_with_min_max.html b/test_fixtures/flex/undefined_height_with_min_max.html new file mode 100644 index 000000000..162ab9512 --- /dev/null +++ b/test_fixtures/flex/undefined_height_with_min_max.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/undefined_width_with_min_max.html b/test_fixtures/flex/undefined_width_with_min_max.html new file mode 100644 index 000000000..895fe4f1f --- /dev/null +++ b/test_fixtures/flex/undefined_width_with_min_max.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/undefined_width_with_min_max_row.html b/test_fixtures/flex/undefined_width_with_min_max_row.html new file mode 100644 index 000000000..10a5f17b0 --- /dev/null +++ b/test_fixtures/flex/undefined_width_with_min_max_row.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/width_smaller_then_content_with_flex_grow_large_size.html b/test_fixtures/flex/width_smaller_then_content_with_flex_grow_large_size.html new file mode 100644 index 000000000..9708f13c2 --- /dev/null +++ b/test_fixtures/flex/width_smaller_then_content_with_flex_grow_large_size.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/width_smaller_then_content_with_flex_grow_small_size.html b/test_fixtures/flex/width_smaller_then_content_with_flex_grow_small_size.html new file mode 100644 index 000000000..0ebef442a --- /dev/null +++ b/test_fixtures/flex/width_smaller_then_content_with_flex_grow_small_size.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/width_smaller_then_content_with_flex_grow_unconstraint_size.html b/test_fixtures/flex/width_smaller_then_content_with_flex_grow_unconstraint_size.html new file mode 100644 index 000000000..a6ec4e7e9 --- /dev/null +++ b/test_fixtures/flex/width_smaller_then_content_with_flex_grow_unconstraint_size.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/width_smaller_then_content_with_flex_grow_very_large_size.html b/test_fixtures/flex/width_smaller_then_content_with_flex_grow_very_large_size.html new file mode 100644 index 000000000..9f1d5388f --- /dev/null +++ b/test_fixtures/flex/width_smaller_then_content_with_flex_grow_very_large_size.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/wrap_child.html b/test_fixtures/flex/wrap_child.html new file mode 100644 index 000000000..d41ccf37c --- /dev/null +++ b/test_fixtures/flex/wrap_child.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/wrap_column.html b/test_fixtures/flex/wrap_column.html new file mode 100644 index 000000000..7f0e8ea8e --- /dev/null +++ b/test_fixtures/flex/wrap_column.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/wrap_grandchild.html b/test_fixtures/flex/wrap_grandchild.html new file mode 100644 index 000000000..c02b321e2 --- /dev/null +++ b/test_fixtures/flex/wrap_grandchild.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/wrap_nodes_with_content_sizing_margin_cross.html b/test_fixtures/flex/wrap_nodes_with_content_sizing_margin_cross.html similarity index 76% rename from test_fixtures/wrap_nodes_with_content_sizing_margin_cross.html rename to test_fixtures/flex/wrap_nodes_with_content_sizing_margin_cross.html index 72c3a02d7..722b10a79 100644 --- a/test_fixtures/wrap_nodes_with_content_sizing_margin_cross.html +++ b/test_fixtures/flex/wrap_nodes_with_content_sizing_margin_cross.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/wrap_nodes_with_content_sizing_overflowing_margin.html b/test_fixtures/flex/wrap_nodes_with_content_sizing_overflowing_margin.html similarity index 76% rename from test_fixtures/wrap_nodes_with_content_sizing_overflowing_margin.html rename to test_fixtures/flex/wrap_nodes_with_content_sizing_overflowing_margin.html index e7c7ef08c..31a9d4b09 100644 --- a/test_fixtures/wrap_nodes_with_content_sizing_overflowing_margin.html +++ b/test_fixtures/flex/wrap_nodes_with_content_sizing_overflowing_margin.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/wrap_reverse_column.html b/test_fixtures/flex/wrap_reverse_column.html new file mode 100644 index 000000000..99c61c51d --- /dev/null +++ b/test_fixtures/flex/wrap_reverse_column.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/wrap_reverse_column_fixed_size.html b/test_fixtures/flex/wrap_reverse_column_fixed_size.html similarity index 76% rename from test_fixtures/wrap_reverse_column_fixed_size.html rename to test_fixtures/flex/wrap_reverse_column_fixed_size.html index 5366ca842..cfbdc1c25 100644 --- a/test_fixtures/wrap_reverse_column_fixed_size.html +++ b/test_fixtures/flex/wrap_reverse_column_fixed_size.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/wrap_reverse_row.html b/test_fixtures/flex/wrap_reverse_row.html new file mode 100644 index 000000000..2202326fb --- /dev/null +++ b/test_fixtures/flex/wrap_reverse_row.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/wrap_reverse_row_align_content_center.html b/test_fixtures/flex/wrap_reverse_row_align_content_center.html similarity index 75% rename from test_fixtures/wrap_reverse_row_align_content_center.html rename to test_fixtures/flex/wrap_reverse_row_align_content_center.html index b6a3c316a..794689bac 100644 --- a/test_fixtures/wrap_reverse_row_align_content_center.html +++ b/test_fixtures/flex/wrap_reverse_row_align_content_center.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/wrap_reverse_row_align_content_flex_start.html b/test_fixtures/flex/wrap_reverse_row_align_content_flex_start.html similarity index 75% rename from test_fixtures/wrap_reverse_row_align_content_flex_start.html rename to test_fixtures/flex/wrap_reverse_row_align_content_flex_start.html index b6c46a848..4964fd3d6 100644 --- a/test_fixtures/wrap_reverse_row_align_content_flex_start.html +++ b/test_fixtures/flex/wrap_reverse_row_align_content_flex_start.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/wrap_reverse_row_align_content_space_around.html b/test_fixtures/flex/wrap_reverse_row_align_content_space_around.html similarity index 75% rename from test_fixtures/wrap_reverse_row_align_content_space_around.html rename to test_fixtures/flex/wrap_reverse_row_align_content_space_around.html index 2c94a0d7a..277ca4119 100644 --- a/test_fixtures/wrap_reverse_row_align_content_space_around.html +++ b/test_fixtures/flex/wrap_reverse_row_align_content_space_around.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/wrap_reverse_row_align_content_stretch.html b/test_fixtures/flex/wrap_reverse_row_align_content_stretch.html similarity index 75% rename from test_fixtures/wrap_reverse_row_align_content_stretch.html rename to test_fixtures/flex/wrap_reverse_row_align_content_stretch.html index 6b2ba94a6..200d6a5c2 100644 --- a/test_fixtures/wrap_reverse_row_align_content_stretch.html +++ b/test_fixtures/flex/wrap_reverse_row_align_content_stretch.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/wrap_reverse_row_single_line_different_size.html b/test_fixtures/flex/wrap_reverse_row_single_line_different_size.html similarity index 75% rename from test_fixtures/wrap_reverse_row_single_line_different_size.html rename to test_fixtures/flex/wrap_reverse_row_single_line_different_size.html index 50b4920a0..680f78a16 100644 --- a/test_fixtures/wrap_reverse_row_single_line_different_size.html +++ b/test_fixtures/flex/wrap_reverse_row_single_line_different_size.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/wrap_row.html b/test_fixtures/flex/wrap_row.html new file mode 100644 index 000000000..f153c207d --- /dev/null +++ b/test_fixtures/flex/wrap_row.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/wrap_row_align_items_center.html b/test_fixtures/flex/wrap_row_align_items_center.html new file mode 100644 index 000000000..c70edd989 --- /dev/null +++ b/test_fixtures/flex/wrap_row_align_items_center.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/wrap_row_align_items_flex_end.html b/test_fixtures/flex/wrap_row_align_items_flex_end.html new file mode 100644 index 000000000..ba2094909 --- /dev/null +++ b/test_fixtures/flex/wrap_row_align_items_flex_end.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/wrapped_column_max_height.html b/test_fixtures/flex/wrapped_column_max_height.html similarity index 75% rename from test_fixtures/wrapped_column_max_height.html rename to test_fixtures/flex/wrapped_column_max_height.html index c664aa785..eaab8447e 100644 --- a/test_fixtures/wrapped_column_max_height.html +++ b/test_fixtures/flex/wrapped_column_max_height.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/wrapped_column_max_height_flex.html b/test_fixtures/flex/wrapped_column_max_height_flex.html similarity index 76% rename from test_fixtures/wrapped_column_max_height_flex.html rename to test_fixtures/flex/wrapped_column_max_height_flex.html index 96c28565c..b399b9393 100644 --- a/test_fixtures/wrapped_column_max_height_flex.html +++ b/test_fixtures/flex/wrapped_column_max_height_flex.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/flex/wrapped_row_within_align_items_center.html b/test_fixtures/flex/wrapped_row_within_align_items_center.html new file mode 100644 index 000000000..1ccaa09e2 --- /dev/null +++ b/test_fixtures/flex/wrapped_row_within_align_items_center.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/wrapped_row_within_align_items_flex_end.html b/test_fixtures/flex/wrapped_row_within_align_items_flex_end.html new file mode 100644 index 000000000..c0f568a07 --- /dev/null +++ b/test_fixtures/flex/wrapped_row_within_align_items_flex_end.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/wrapped_row_within_align_items_flex_start.html b/test_fixtures/flex/wrapped_row_within_align_items_flex_start.html new file mode 100644 index 000000000..bbadd62b6 --- /dev/null +++ b/test_fixtures/flex/wrapped_row_within_align_items_flex_start.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/xaspect_ratio_flex_column_stretch_fill_min_height.html b/test_fixtures/flex/xaspect_ratio_flex_column_stretch_fill_min_height.html new file mode 100644 index 000000000..44d79d5c5 --- /dev/null +++ b/test_fixtures/flex/xaspect_ratio_flex_column_stretch_fill_min_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/xaspect_ratio_flex_column_stretch_fill_min_width.html b/test_fixtures/flex/xaspect_ratio_flex_column_stretch_fill_min_width.html new file mode 100644 index 000000000..40644165a --- /dev/null +++ b/test_fixtures/flex/xaspect_ratio_flex_column_stretch_fill_min_width.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+ +
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/xaspect_ratio_flex_row_stretch_fill_min_height.html b/test_fixtures/flex/xaspect_ratio_flex_row_stretch_fill_min_height.html new file mode 100644 index 000000000..f4f880fe5 --- /dev/null +++ b/test_fixtures/flex/xaspect_ratio_flex_row_stretch_fill_min_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/xaspect_ratio_flex_row_stretch_fill_min_width.html b/test_fixtures/flex/xaspect_ratio_flex_row_stretch_fill_min_width.html new file mode 100644 index 000000000..2313107cf --- /dev/null +++ b/test_fixtures/flex/xaspect_ratio_flex_row_stretch_fill_min_width.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+ +
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/xflex_basis_zero_undefined_main_size_hidden.html b/test_fixtures/flex/xflex_basis_zero_undefined_main_size_hidden.html new file mode 100644 index 000000000..b381df761 --- /dev/null +++ b/test_fixtures/flex/xflex_basis_zero_undefined_main_size_hidden.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/xmargin_auto_start_and_end.html b/test_fixtures/flex/xmargin_auto_start_and_end.html new file mode 100644 index 000000000..afa8ee464 --- /dev/null +++ b/test_fixtures/flex/xmargin_auto_start_and_end.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/xmargin_auto_start_and_end_column.html b/test_fixtures/flex/xmargin_auto_start_and_end_column.html new file mode 100644 index 000000000..b5575c2c9 --- /dev/null +++ b/test_fixtures/flex/xmargin_auto_start_and_end_column.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/xmargin_end.html b/test_fixtures/flex/xmargin_end.html new file mode 100644 index 000000000..8afe155a7 --- /dev/null +++ b/test_fixtures/flex/xmargin_end.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex/xmargin_start.html b/test_fixtures/flex/xmargin_start.html new file mode 100644 index 000000000..a597333b4 --- /dev/null +++ b/test_fixtures/flex/xmargin_start.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/flex_basis_and_main_dimen_set_when_flexing.html b/test_fixtures/flex_basis_and_main_dimen_set_when_flexing.html deleted file mode 100644 index 7a8defe77..000000000 --- a/test_fixtures/flex_basis_and_main_dimen_set_when_flexing.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_flex_grow_column.html b/test_fixtures/flex_basis_flex_grow_column.html deleted file mode 100644 index 983b6d814..000000000 --- a/test_fixtures/flex_basis_flex_grow_column.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_flex_grow_row.html b/test_fixtures/flex_basis_flex_grow_row.html deleted file mode 100644 index 1c6fd43a1..000000000 --- a/test_fixtures/flex_basis_flex_grow_row.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_flex_shrink_column.html b/test_fixtures/flex_basis_flex_shrink_column.html deleted file mode 100644 index bf29e5084..000000000 --- a/test_fixtures/flex_basis_flex_shrink_column.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_flex_shrink_row.html b/test_fixtures/flex_basis_flex_shrink_row.html deleted file mode 100644 index a5ba05682..000000000 --- a/test_fixtures/flex_basis_flex_shrink_row.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_larger_than_content_column.html b/test_fixtures/flex_basis_larger_than_content_column.html deleted file mode 100644 index 7aee28625..000000000 --- a/test_fixtures/flex_basis_larger_than_content_column.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_larger_than_content_row.html b/test_fixtures/flex_basis_larger_than_content_row.html deleted file mode 100644 index 7edcf5acf..000000000 --- a/test_fixtures/flex_basis_larger_than_content_row.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_overrides_main_size.html b/test_fixtures/flex_basis_overrides_main_size.html deleted file mode 100644 index d427df039..000000000 --- a/test_fixtures/flex_basis_overrides_main_size.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_slightly_smaller_then_content_with_flex_grow_large_size.html b/test_fixtures/flex_basis_slightly_smaller_then_content_with_flex_grow_large_size.html deleted file mode 100644 index 9f2ca3d32..000000000 --- a/test_fixtures/flex_basis_slightly_smaller_then_content_with_flex_grow_large_size.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_smaller_than_content_column.html b/test_fixtures/flex_basis_smaller_than_content_column.html deleted file mode 100644 index 86f9906e3..000000000 --- a/test_fixtures/flex_basis_smaller_than_content_column.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_smaller_than_content_row.html b/test_fixtures/flex_basis_smaller_than_content_row.html deleted file mode 100644 index bf354e6c5..000000000 --- a/test_fixtures/flex_basis_smaller_than_content_row.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_smaller_than_main_dimen_column.html b/test_fixtures/flex_basis_smaller_than_main_dimen_column.html deleted file mode 100644 index c081c870d..000000000 --- a/test_fixtures/flex_basis_smaller_than_main_dimen_column.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_smaller_than_main_dimen_row.html b/test_fixtures/flex_basis_smaller_than_main_dimen_row.html deleted file mode 100644 index e0edfd4ea..000000000 --- a/test_fixtures/flex_basis_smaller_than_main_dimen_row.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_smaller_then_content_with_flex_grow_large_size.html b/test_fixtures/flex_basis_smaller_then_content_with_flex_grow_large_size.html deleted file mode 100644 index 46dd8a6ca..000000000 --- a/test_fixtures/flex_basis_smaller_then_content_with_flex_grow_large_size.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_smaller_then_content_with_flex_grow_small_size.html b/test_fixtures/flex_basis_smaller_then_content_with_flex_grow_small_size.html deleted file mode 100644 index e38b91edf..000000000 --- a/test_fixtures/flex_basis_smaller_then_content_with_flex_grow_small_size.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_smaller_then_content_with_flex_grow_unconstraint_size.html b/test_fixtures/flex_basis_smaller_then_content_with_flex_grow_unconstraint_size.html deleted file mode 100644 index 143e4f977..000000000 --- a/test_fixtures/flex_basis_smaller_then_content_with_flex_grow_unconstraint_size.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_smaller_then_content_with_flex_grow_very_large_size.html b/test_fixtures/flex_basis_smaller_then_content_with_flex_grow_very_large_size.html deleted file mode 100644 index 92473e2ae..000000000 --- a/test_fixtures/flex_basis_smaller_then_content_with_flex_grow_very_large_size.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_unconstraint_column.html b/test_fixtures/flex_basis_unconstraint_column.html deleted file mode 100644 index cd402a4b9..000000000 --- a/test_fixtures/flex_basis_unconstraint_column.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_unconstraint_row.html b/test_fixtures/flex_basis_unconstraint_row.html deleted file mode 100644 index d98c92bee..000000000 --- a/test_fixtures/flex_basis_unconstraint_row.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_basis_zero_undefined_main_size.html b/test_fixtures/flex_basis_zero_undefined_main_size.html deleted file mode 100644 index 039af09e8..000000000 --- a/test_fixtures/flex_basis_zero_undefined_main_size.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_column_relative_all_sides.html b/test_fixtures/flex_column_relative_all_sides.html deleted file mode 100644 index bbe8f8fd5..000000000 --- a/test_fixtures/flex_column_relative_all_sides.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_direction_column.html b/test_fixtures/flex_direction_column.html deleted file mode 100644 index bf366b40d..000000000 --- a/test_fixtures/flex_direction_column.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_direction_column_no_height.html b/test_fixtures/flex_direction_column_no_height.html deleted file mode 100644 index c8727456c..000000000 --- a/test_fixtures/flex_direction_column_no_height.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_direction_column_reverse.html b/test_fixtures/flex_direction_column_reverse.html deleted file mode 100644 index 3630ce457..000000000 --- a/test_fixtures/flex_direction_column_reverse.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_direction_column_reverse_no_height.html b/test_fixtures/flex_direction_column_reverse_no_height.html deleted file mode 100644 index 03a6e022a..000000000 --- a/test_fixtures/flex_direction_column_reverse_no_height.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_direction_row.html b/test_fixtures/flex_direction_row.html deleted file mode 100644 index 855f3f1f7..000000000 --- a/test_fixtures/flex_direction_row.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_direction_row_no_width.html b/test_fixtures/flex_direction_row_no_width.html deleted file mode 100644 index 4a844e87c..000000000 --- a/test_fixtures/flex_direction_row_no_width.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_direction_row_reverse.html b/test_fixtures/flex_direction_row_reverse.html deleted file mode 100644 index 0588426dd..000000000 --- a/test_fixtures/flex_direction_row_reverse.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_child.html b/test_fixtures/flex_grow_child.html deleted file mode 100644 index 4260a6a9a..000000000 --- a/test_fixtures/flex_grow_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_flex_basis_percent_min_max.html b/test_fixtures/flex_grow_flex_basis_percent_min_max.html deleted file mode 100644 index f3e4fefe7..000000000 --- a/test_fixtures/flex_grow_flex_basis_percent_min_max.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_height_maximized.html b/test_fixtures/flex_grow_height_maximized.html deleted file mode 100644 index 0d8047755..000000000 --- a/test_fixtures/flex_grow_height_maximized.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_in_at_most_container.html b/test_fixtures/flex_grow_in_at_most_container.html deleted file mode 100644 index dff853826..000000000 --- a/test_fixtures/flex_grow_in_at_most_container.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_less_than_factor_one.html b/test_fixtures/flex_grow_less_than_factor_one.html deleted file mode 100644 index a59805a4f..000000000 --- a/test_fixtures/flex_grow_less_than_factor_one.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_root_minimized.html b/test_fixtures/flex_grow_root_minimized.html deleted file mode 100644 index f4bfbeb8e..000000000 --- a/test_fixtures/flex_grow_root_minimized.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_shrink_at_most.html b/test_fixtures/flex_grow_shrink_at_most.html deleted file mode 100644 index 328e1155d..000000000 --- a/test_fixtures/flex_grow_shrink_at_most.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_to_min.html b/test_fixtures/flex_grow_to_min.html deleted file mode 100644 index fd0af7557..000000000 --- a/test_fixtures/flex_grow_to_min.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_within_constrained_max_column.html b/test_fixtures/flex_grow_within_constrained_max_column.html deleted file mode 100644 index df3005897..000000000 --- a/test_fixtures/flex_grow_within_constrained_max_column.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_within_constrained_max_row.html b/test_fixtures/flex_grow_within_constrained_max_row.html deleted file mode 100644 index b21ad2705..000000000 --- a/test_fixtures/flex_grow_within_constrained_max_row.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_within_constrained_max_width.html b/test_fixtures/flex_grow_within_constrained_max_width.html deleted file mode 100644 index b77e0ff3a..000000000 --- a/test_fixtures/flex_grow_within_constrained_max_width.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_within_constrained_min_column.html b/test_fixtures/flex_grow_within_constrained_min_column.html deleted file mode 100644 index 8f9a12f96..000000000 --- a/test_fixtures/flex_grow_within_constrained_min_column.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_within_constrained_min_max_column.html b/test_fixtures/flex_grow_within_constrained_min_max_column.html deleted file mode 100644 index 56a96e1c9..000000000 --- a/test_fixtures/flex_grow_within_constrained_min_max_column.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_within_constrained_min_row.html b/test_fixtures/flex_grow_within_constrained_min_row.html deleted file mode 100644 index 3f41d885d..000000000 --- a/test_fixtures/flex_grow_within_constrained_min_row.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_grow_within_max_width.html b/test_fixtures/flex_grow_within_max_width.html deleted file mode 100644 index ea1c9c7aa..000000000 --- a/test_fixtures/flex_grow_within_max_width.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_root_ignored.html b/test_fixtures/flex_root_ignored.html deleted file mode 100644 index 4ee88c271..000000000 --- a/test_fixtures/flex_root_ignored.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_row_relative_all_sides.html b/test_fixtures/flex_row_relative_all_sides.html deleted file mode 100644 index 989c6f0b1..000000000 --- a/test_fixtures/flex_row_relative_all_sides.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_shrink_by_outer_margin_with_max_size.html b/test_fixtures/flex_shrink_by_outer_margin_with_max_size.html deleted file mode 100644 index 6e756faf1..000000000 --- a/test_fixtures/flex_shrink_by_outer_margin_with_max_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_shrink_flex_grow_child_flex_shrink_other_child.html b/test_fixtures/flex_shrink_flex_grow_child_flex_shrink_other_child.html deleted file mode 100644 index 99bb7a4de..000000000 --- a/test_fixtures/flex_shrink_flex_grow_child_flex_shrink_other_child.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_shrink_flex_grow_row.html b/test_fixtures/flex_shrink_flex_grow_row.html deleted file mode 100644 index 39223ca8b..000000000 --- a/test_fixtures/flex_shrink_flex_grow_row.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_shrink_to_zero.html b/test_fixtures/flex_shrink_to_zero.html deleted file mode 100644 index 98424eb29..000000000 --- a/test_fixtures/flex_shrink_to_zero.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_wrap_align_stretch_fits_one_row.html b/test_fixtures/flex_wrap_align_stretch_fits_one_row.html deleted file mode 100644 index 0e4371d7d..000000000 --- a/test_fixtures/flex_wrap_align_stretch_fits_one_row.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_wrap_children_with_min_main_overriding_flex_basis.html b/test_fixtures/flex_wrap_children_with_min_main_overriding_flex_basis.html deleted file mode 100644 index ae84f19d8..000000000 --- a/test_fixtures/flex_wrap_children_with_min_main_overriding_flex_basis.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/flex_wrap_wrap_to_child_height.html b/test_fixtures/flex_wrap_wrap_to_child_height.html deleted file mode 100644 index 30de5236e..000000000 --- a/test_fixtures/flex_wrap_wrap_to_child_height.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_child_margins.html b/test_fixtures/gap_column_gap_child_margins.html deleted file mode 100644 index f6f19b33f..000000000 --- a/test_fixtures/gap_column_gap_child_margins.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_determines_parent_width.html b/test_fixtures/gap_column_gap_determines_parent_width.html deleted file mode 100644 index b41229e4b..000000000 --- a/test_fixtures/gap_column_gap_determines_parent_width.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_flexible.html b/test_fixtures/gap_column_gap_flexible.html deleted file mode 100644 index 4b05a0ced..000000000 --- a/test_fixtures/gap_column_gap_flexible.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_flexible_undefined_parent.html b/test_fixtures/gap_column_gap_flexible_undefined_parent.html deleted file mode 100644 index 02c134c9d..000000000 --- a/test_fixtures/gap_column_gap_flexible_undefined_parent.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_inflexible.html b/test_fixtures/gap_column_gap_inflexible.html deleted file mode 100644 index 1d82360a4..000000000 --- a/test_fixtures/gap_column_gap_inflexible.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_inflexible_undefined_parent.html b/test_fixtures/gap_column_gap_inflexible_undefined_parent.html deleted file mode 100644 index 4d90217d6..000000000 --- a/test_fixtures/gap_column_gap_inflexible_undefined_parent.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_justify_center.html b/test_fixtures/gap_column_gap_justify_center.html deleted file mode 100644 index 5ce8073e1..000000000 --- a/test_fixtures/gap_column_gap_justify_center.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_justify_flex_end.html b/test_fixtures/gap_column_gap_justify_flex_end.html deleted file mode 100644 index 53783140d..000000000 --- a/test_fixtures/gap_column_gap_justify_flex_end.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_justify_flex_start.html b/test_fixtures/gap_column_gap_justify_flex_start.html deleted file mode 100644 index 4ac7e6256..000000000 --- a/test_fixtures/gap_column_gap_justify_flex_start.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_justify_space_around.html b/test_fixtures/gap_column_gap_justify_space_around.html deleted file mode 100644 index a12468fe3..000000000 --- a/test_fixtures/gap_column_gap_justify_space_around.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_justify_space_between.html b/test_fixtures/gap_column_gap_justify_space_between.html deleted file mode 100644 index a4b36bc8c..000000000 --- a/test_fixtures/gap_column_gap_justify_space_between.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_justify_space_evenly.html b/test_fixtures/gap_column_gap_justify_space_evenly.html deleted file mode 100644 index dd1506dfd..000000000 --- a/test_fixtures/gap_column_gap_justify_space_evenly.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_mixed_flexible.html b/test_fixtures/gap_column_gap_mixed_flexible.html deleted file mode 100644 index 9225b180b..000000000 --- a/test_fixtures/gap_column_gap_mixed_flexible.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_percentage_cyclic_partially_shrinkable.html b/test_fixtures/gap_column_gap_percentage_cyclic_partially_shrinkable.html deleted file mode 100644 index a65dc5203..000000000 --- a/test_fixtures/gap_column_gap_percentage_cyclic_partially_shrinkable.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_percentage_cyclic_shrinkable.html b/test_fixtures/gap_column_gap_percentage_cyclic_shrinkable.html deleted file mode 100644 index 655b830e1..000000000 --- a/test_fixtures/gap_column_gap_percentage_cyclic_shrinkable.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_percentage_cyclic_unshrinkable.html b/test_fixtures/gap_column_gap_percentage_cyclic_unshrinkable.html deleted file mode 100644 index b726f7f26..000000000 --- a/test_fixtures/gap_column_gap_percentage_cyclic_unshrinkable.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_percentage_flexible.html b/test_fixtures/gap_column_gap_percentage_flexible.html deleted file mode 100644 index 7fc173108..000000000 --- a/test_fixtures/gap_column_gap_percentage_flexible.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_percentage_flexible_with_padding.html b/test_fixtures/gap_column_gap_percentage_flexible_with_padding.html deleted file mode 100644 index 96489625e..000000000 --- a/test_fixtures/gap_column_gap_percentage_flexible_with_padding.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_column_gap_percentage_inflexible.html b/test_fixtures/gap_column_gap_percentage_inflexible.html deleted file mode 100644 index c18b9257c..000000000 --- a/test_fixtures/gap_column_gap_percentage_inflexible.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_row_gap_column_child_margins.html b/test_fixtures/gap_row_gap_column_child_margins.html deleted file mode 100644 index 9f0f19e3d..000000000 --- a/test_fixtures/gap_row_gap_column_child_margins.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_row_gap_determines_parent_height.html b/test_fixtures/gap_row_gap_determines_parent_height.html deleted file mode 100644 index 0a0ff737b..000000000 --- a/test_fixtures/gap_row_gap_determines_parent_height.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gap_row_gap_row_wrap_child_margins.html b/test_fixtures/gap_row_gap_row_wrap_child_margins.html deleted file mode 100644 index 49a0b1b5e..000000000 --- a/test_fixtures/gap_row_gap_row_wrap_child_margins.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_absolute_align_self_sized_all.html b/test_fixtures/grid/grid_absolute_align_self_sized_all.html similarity index 86% rename from test_fixtures/grid_absolute_align_self_sized_all.html rename to test_fixtures/grid/grid_absolute_align_self_sized_all.html index a871399d8..223edba21 100644 --- a/test_fixtures/grid_absolute_align_self_sized_all.html +++ b/test_fixtures/grid/grid_absolute_align_self_sized_all.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_absolute_column_end.html b/test_fixtures/grid/grid_absolute_column_end.html new file mode 100644 index 000000000..0e42a8d82 --- /dev/null +++ b/test_fixtures/grid/grid_absolute_column_end.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_absolute_column_start.html b/test_fixtures/grid/grid_absolute_column_start.html new file mode 100644 index 000000000..d15aa8059 --- /dev/null +++ b/test_fixtures/grid/grid_absolute_column_start.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_absolute_container_bottom_left.html b/test_fixtures/grid/grid_absolute_container_bottom_left.html similarity index 75% rename from test_fixtures/grid_absolute_container_bottom_left.html rename to test_fixtures/grid/grid_absolute_container_bottom_left.html index 91545f9cc..61271e943 100644 --- a/test_fixtures/grid_absolute_container_bottom_left.html +++ b/test_fixtures/grid/grid_absolute_container_bottom_left.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_container_bottom_left_margin.html b/test_fixtures/grid/grid_absolute_container_bottom_left_margin.html similarity index 77% rename from test_fixtures/grid_absolute_container_bottom_left_margin.html rename to test_fixtures/grid/grid_absolute_container_bottom_left_margin.html index 817705e2c..c6cefae25 100644 --- a/test_fixtures/grid_absolute_container_bottom_left_margin.html +++ b/test_fixtures/grid/grid_absolute_container_bottom_left_margin.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_container_left_overrides_right.html b/test_fixtures/grid/grid_absolute_container_left_overrides_right.html similarity index 76% rename from test_fixtures/grid_absolute_container_left_overrides_right.html rename to test_fixtures/grid/grid_absolute_container_left_overrides_right.html index 72e8f3a7f..0ea5e3eed 100644 --- a/test_fixtures/grid_absolute_container_left_overrides_right.html +++ b/test_fixtures/grid/grid_absolute_container_left_overrides_right.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_container_left_right.html b/test_fixtures/grid/grid_absolute_container_left_right.html similarity index 75% rename from test_fixtures/grid_absolute_container_left_right.html rename to test_fixtures/grid/grid_absolute_container_left_right.html index 933d6b089..fe78f7c01 100644 --- a/test_fixtures/grid_absolute_container_left_right.html +++ b/test_fixtures/grid/grid_absolute_container_left_right.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_container_left_right_margin.html b/test_fixtures/grid/grid_absolute_container_left_right_margin.html similarity index 76% rename from test_fixtures/grid_absolute_container_left_right_margin.html rename to test_fixtures/grid/grid_absolute_container_left_right_margin.html index 03914c4c3..2f32f534a 100644 --- a/test_fixtures/grid_absolute_container_left_right_margin.html +++ b/test_fixtures/grid/grid_absolute_container_left_right_margin.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_container_negative_position.html b/test_fixtures/grid/grid_absolute_container_negative_position.html similarity index 78% rename from test_fixtures/grid_absolute_container_negative_position.html rename to test_fixtures/grid/grid_absolute_container_negative_position.html index 67dd9a88f..b89933ca4 100644 --- a/test_fixtures/grid_absolute_container_negative_position.html +++ b/test_fixtures/grid/grid_absolute_container_negative_position.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_container_negative_position_margin.html b/test_fixtures/grid/grid_absolute_container_negative_position_margin.html similarity index 80% rename from test_fixtures/grid_absolute_container_negative_position_margin.html rename to test_fixtures/grid/grid_absolute_container_negative_position_margin.html index 6ac91271c..855335bf0 100644 --- a/test_fixtures/grid_absolute_container_negative_position_margin.html +++ b/test_fixtures/grid/grid_absolute_container_negative_position_margin.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_container_top_bottom.html b/test_fixtures/grid/grid_absolute_container_top_bottom.html similarity index 75% rename from test_fixtures/grid_absolute_container_top_bottom.html rename to test_fixtures/grid/grid_absolute_container_top_bottom.html index 98058036f..d2705ec7b 100644 --- a/test_fixtures/grid_absolute_container_top_bottom.html +++ b/test_fixtures/grid/grid_absolute_container_top_bottom.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_container_top_bottom_margin.html b/test_fixtures/grid/grid_absolute_container_top_bottom_margin.html similarity index 76% rename from test_fixtures/grid_absolute_container_top_bottom_margin.html rename to test_fixtures/grid/grid_absolute_container_top_bottom_margin.html index d4327152e..73776c4c6 100644 --- a/test_fixtures/grid_absolute_container_top_bottom_margin.html +++ b/test_fixtures/grid/grid_absolute_container_top_bottom_margin.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_container_top_right.html b/test_fixtures/grid/grid_absolute_container_top_right.html similarity index 75% rename from test_fixtures/grid_absolute_container_top_right.html rename to test_fixtures/grid/grid_absolute_container_top_right.html index a5bd85246..de5361e0d 100644 --- a/test_fixtures/grid_absolute_container_top_right.html +++ b/test_fixtures/grid/grid_absolute_container_top_right.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_container_top_right_margin.html b/test_fixtures/grid/grid_absolute_container_top_right_margin.html similarity index 76% rename from test_fixtures/grid_absolute_container_top_right_margin.html rename to test_fixtures/grid/grid_absolute_container_top_right_margin.html index 7f91aace1..1d74179ae 100644 --- a/test_fixtures/grid_absolute_container_top_right_margin.html +++ b/test_fixtures/grid/grid_absolute_container_top_right_margin.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_justify_self_sized_all.html b/test_fixtures/grid/grid_absolute_justify_self_sized_all.html similarity index 86% rename from test_fixtures/grid_absolute_justify_self_sized_all.html rename to test_fixtures/grid/grid_absolute_justify_self_sized_all.html index c63710999..fd76c111d 100644 --- a/test_fixtures/grid_absolute_justify_self_sized_all.html +++ b/test_fixtures/grid/grid_absolute_justify_self_sized_all.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_layout_within_border.html b/test_fixtures/grid/grid_absolute_layout_within_border.html similarity index 80% rename from test_fixtures/grid_absolute_layout_within_border.html rename to test_fixtures/grid/grid_absolute_layout_within_border.html index 266564e61..8c25159db 100644 --- a/test_fixtures/grid_absolute_layout_within_border.html +++ b/test_fixtures/grid/grid_absolute_layout_within_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_layout_within_border_static.html b/test_fixtures/grid/grid_absolute_layout_within_border_static.html similarity index 81% rename from test_fixtures/grid_absolute_layout_within_border_static.html rename to test_fixtures/grid/grid_absolute_layout_within_border_static.html index 84a7cb7f1..7fdd1547a 100644 --- a/test_fixtures/grid_absolute_layout_within_border_static.html +++ b/test_fixtures/grid/grid_absolute_layout_within_border_static.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_absolute_row_end.html b/test_fixtures/grid/grid_absolute_row_end.html new file mode 100644 index 000000000..0ab4e21de --- /dev/null +++ b/test_fixtures/grid/grid_absolute_row_end.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_absolute_row_start.html b/test_fixtures/grid/grid_absolute_row_start.html new file mode 100644 index 000000000..d6a302652 --- /dev/null +++ b/test_fixtures/grid/grid_absolute_row_start.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_absolute_top_overrides_bottom.html b/test_fixtures/grid/grid_absolute_top_overrides_bottom.html similarity index 76% rename from test_fixtures/grid_absolute_top_overrides_bottom.html rename to test_fixtures/grid/grid_absolute_top_overrides_bottom.html index 9dcdd405d..895345193 100644 --- a/test_fixtures/grid_absolute_top_overrides_bottom.html +++ b/test_fixtures/grid/grid_absolute_top_overrides_bottom.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_with_padding.html b/test_fixtures/grid/grid_absolute_with_padding.html similarity index 78% rename from test_fixtures/grid_absolute_with_padding.html rename to test_fixtures/grid/grid_absolute_with_padding.html index 8da4f5b0e..135a0c0b4 100644 --- a/test_fixtures/grid_absolute_with_padding.html +++ b/test_fixtures/grid/grid_absolute_with_padding.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_absolute_with_padding_and_margin.html b/test_fixtures/grid/grid_absolute_with_padding_and_margin.html similarity index 80% rename from test_fixtures/grid_absolute_with_padding_and_margin.html rename to test_fixtures/grid/grid_absolute_with_padding_and_margin.html index 4f4fed840..6ef09f41d 100644 --- a/test_fixtures/grid_absolute_with_padding_and_margin.html +++ b/test_fixtures/grid/grid_absolute_with_padding_and_margin.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_align_content_center.html b/test_fixtures/grid/grid_align_content_center.html new file mode 100644 index 000000000..6872a421f --- /dev/null +++ b/test_fixtures/grid/grid_align_content_center.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_align_content_end.html b/test_fixtures/grid/grid_align_content_end.html new file mode 100644 index 000000000..91ab51909 --- /dev/null +++ b/test_fixtures/grid/grid_align_content_end.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_align_content_end_with_padding_border.html b/test_fixtures/grid/grid_align_content_end_with_padding_border.html similarity index 75% rename from test_fixtures/grid_align_content_end_with_padding_border.html rename to test_fixtures/grid/grid_align_content_end_with_padding_border.html index 35669def1..0c0f23866 100644 --- a/test_fixtures/grid_align_content_end_with_padding_border.html +++ b/test_fixtures/grid/grid_align_content_end_with_padding_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_align_content_space_around.html b/test_fixtures/grid/grid_align_content_space_around.html new file mode 100644 index 000000000..342d38620 --- /dev/null +++ b/test_fixtures/grid/grid_align_content_space_around.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_align_content_space_around_with_padding_border.html b/test_fixtures/grid/grid_align_content_space_around_with_padding_border.html similarity index 75% rename from test_fixtures/grid_align_content_space_around_with_padding_border.html rename to test_fixtures/grid/grid_align_content_space_around_with_padding_border.html index 81662f86a..29bb3b98b 100644 --- a/test_fixtures/grid_align_content_space_around_with_padding_border.html +++ b/test_fixtures/grid/grid_align_content_space_around_with_padding_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_align_content_space_between.html b/test_fixtures/grid/grid_align_content_space_between.html new file mode 100644 index 000000000..232bb4ad6 --- /dev/null +++ b/test_fixtures/grid/grid_align_content_space_between.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_align_content_space_between_with_padding_border.html b/test_fixtures/grid/grid_align_content_space_between_with_padding_border.html similarity index 75% rename from test_fixtures/grid_align_content_space_between_with_padding_border.html rename to test_fixtures/grid/grid_align_content_space_between_with_padding_border.html index 3344dd56f..82f9fdf37 100644 --- a/test_fixtures/grid_align_content_space_between_with_padding_border.html +++ b/test_fixtures/grid/grid_align_content_space_between_with_padding_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_align_content_space_evenly.html b/test_fixtures/grid/grid_align_content_space_evenly.html new file mode 100644 index 000000000..e48c49b73 --- /dev/null +++ b/test_fixtures/grid/grid_align_content_space_evenly.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_align_content_space_evenly_with_padding_border.html b/test_fixtures/grid/grid_align_content_space_evenly_with_padding_border.html similarity index 75% rename from test_fixtures/grid_align_content_space_evenly_with_padding_border.html rename to test_fixtures/grid/grid_align_content_space_evenly_with_padding_border.html index ce338aa32..6bdee41c2 100644 --- a/test_fixtures/grid_align_content_space_evenly_with_padding_border.html +++ b/test_fixtures/grid/grid_align_content_space_evenly_with_padding_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_align_content_start.html b/test_fixtures/grid/grid_align_content_start.html new file mode 100644 index 000000000..2241a33ab --- /dev/null +++ b/test_fixtures/grid/grid_align_content_start.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_align_content_start_with_padding_border.html b/test_fixtures/grid/grid_align_content_start_with_padding_border.html similarity index 75% rename from test_fixtures/grid_align_content_start_with_padding_border.html rename to test_fixtures/grid/grid_align_content_start_with_padding_border.html index 13850464c..4cf2f98ce 100644 --- a/test_fixtures/grid_align_content_start_with_padding_border.html +++ b/test_fixtures/grid/grid_align_content_start_with_padding_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_align_items_baseline.html b/test_fixtures/grid/grid_align_items_baseline.html new file mode 100644 index 000000000..51b1fcbbf --- /dev/null +++ b/test_fixtures/grid/grid_align_items_baseline.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_align_items_baseline_child.html b/test_fixtures/grid/grid_align_items_baseline_child.html new file mode 100644 index 000000000..ad8e6afd3 --- /dev/null +++ b/test_fixtures/grid/grid_align_items_baseline_child.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_align_items_baseline_child_margin.html b/test_fixtures/grid/grid_align_items_baseline_child_margin.html new file mode 100644 index 000000000..0360e68b7 --- /dev/null +++ b/test_fixtures/grid/grid_align_items_baseline_child_margin.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_align_items_baseline_child_margin_percent.html b/test_fixtures/grid/grid_align_items_baseline_child_margin_percent.html new file mode 100644 index 000000000..a2e80c595 --- /dev/null +++ b/test_fixtures/grid/grid_align_items_baseline_child_margin_percent.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_align_items_baseline_child_multiline.html b/test_fixtures/grid/grid_align_items_baseline_child_multiline.html similarity index 80% rename from test_fixtures/grid_align_items_baseline_child_multiline.html rename to test_fixtures/grid/grid_align_items_baseline_child_multiline.html index fde96ca49..6b18108ce 100644 --- a/test_fixtures/grid_align_items_baseline_child_multiline.html +++ b/test_fixtures/grid/grid_align_items_baseline_child_multiline.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_align_items_baseline_child_multiline_no_override_on_secondline.html b/test_fixtures/grid/grid_align_items_baseline_child_multiline_no_override_on_secondline.html similarity index 81% rename from test_fixtures/grid_align_items_baseline_child_multiline_no_override_on_secondline.html rename to test_fixtures/grid/grid_align_items_baseline_child_multiline_no_override_on_secondline.html index a54beed6f..84ff503f1 100644 --- a/test_fixtures/grid_align_items_baseline_child_multiline_no_override_on_secondline.html +++ b/test_fixtures/grid/grid_align_items_baseline_child_multiline_no_override_on_secondline.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_align_items_baseline_child_multiline_override.html b/test_fixtures/grid/grid_align_items_baseline_child_multiline_override.html similarity index 81% rename from test_fixtures/grid_align_items_baseline_child_multiline_override.html rename to test_fixtures/grid/grid_align_items_baseline_child_multiline_override.html index 445927909..f10733a39 100644 --- a/test_fixtures/grid_align_items_baseline_child_multiline_override.html +++ b/test_fixtures/grid/grid_align_items_baseline_child_multiline_override.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_align_items_baseline_child_padding.html b/test_fixtures/grid/grid_align_items_baseline_child_padding.html new file mode 100644 index 000000000..0904f2a79 --- /dev/null +++ b/test_fixtures/grid/grid_align_items_baseline_child_padding.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_align_items_baseline_child_top.html b/test_fixtures/grid/grid_align_items_baseline_child_top.html new file mode 100644 index 000000000..e991f99ce --- /dev/null +++ b/test_fixtures/grid/grid_align_items_baseline_child_top.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_align_items_baseline_child_top2.html b/test_fixtures/grid/grid_align_items_baseline_child_top2.html new file mode 100644 index 000000000..cc0fac855 --- /dev/null +++ b/test_fixtures/grid/grid_align_items_baseline_child_top2.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_align_items_baseline_complex.html b/test_fixtures/grid/grid_align_items_baseline_complex.html similarity index 85% rename from test_fixtures/grid_align_items_baseline_complex.html rename to test_fixtures/grid/grid_align_items_baseline_complex.html index b4029bd26..c776e5941 100644 --- a/test_fixtures/grid_align_items_baseline_complex.html +++ b/test_fixtures/grid/grid_align_items_baseline_complex.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_align_items_baseline_double_nested_child.html b/test_fixtures/grid/grid_align_items_baseline_double_nested_child.html similarity index 75% rename from test_fixtures/grid_align_items_baseline_double_nested_child.html rename to test_fixtures/grid/grid_align_items_baseline_double_nested_child.html index 744b98675..26d8c959a 100644 --- a/test_fixtures/grid_align_items_baseline_double_nested_child.html +++ b/test_fixtures/grid/grid_align_items_baseline_double_nested_child.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_align_items_baseline_multiline.html b/test_fixtures/grid/grid_align_items_baseline_multiline.html similarity index 80% rename from test_fixtures/grid_align_items_baseline_multiline.html rename to test_fixtures/grid/grid_align_items_baseline_multiline.html index 09513ccc9..2d6be79be 100644 --- a/test_fixtures/grid_align_items_baseline_multiline.html +++ b/test_fixtures/grid/grid_align_items_baseline_multiline.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_align_items_baseline_multiline_column.html b/test_fixtures/grid/grid_align_items_baseline_multiline_column.html similarity index 80% rename from test_fixtures/grid_align_items_baseline_multiline_column.html rename to test_fixtures/grid/grid_align_items_baseline_multiline_column.html index 209de377a..c6161c130 100644 --- a/test_fixtures/grid_align_items_baseline_multiline_column.html +++ b/test_fixtures/grid/grid_align_items_baseline_multiline_column.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_align_items_baseline_multiline_row_and_column.html b/test_fixtures/grid/grid_align_items_baseline_multiline_row_and_column.html similarity index 80% rename from test_fixtures/grid_align_items_baseline_multiline_row_and_column.html rename to test_fixtures/grid/grid_align_items_baseline_multiline_row_and_column.html index d5049f109..dcfbf0f44 100644 --- a/test_fixtures/grid_align_items_baseline_multiline_row_and_column.html +++ b/test_fixtures/grid/grid_align_items_baseline_multiline_row_and_column.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_align_items_baseline_nested_column.html b/test_fixtures/grid/grid_align_items_baseline_nested_column.html similarity index 77% rename from test_fixtures/grid_align_items_baseline_nested_column.html rename to test_fixtures/grid/grid_align_items_baseline_nested_column.html index eb4206c16..6554a7c8e 100644 --- a/test_fixtures/grid_align_items_baseline_nested_column.html +++ b/test_fixtures/grid/grid_align_items_baseline_nested_column.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_align_items_sized_center.html b/test_fixtures/grid/grid_align_items_sized_center.html new file mode 100644 index 000000000..dd04212e9 --- /dev/null +++ b/test_fixtures/grid/grid_align_items_sized_center.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_align_items_sized_end.html b/test_fixtures/grid/grid_align_items_sized_end.html new file mode 100644 index 000000000..10967c0c4 --- /dev/null +++ b/test_fixtures/grid/grid_align_items_sized_end.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_align_items_sized_start.html b/test_fixtures/grid/grid_align_items_sized_start.html new file mode 100644 index 000000000..6ca530a99 --- /dev/null +++ b/test_fixtures/grid/grid_align_items_sized_start.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_align_items_sized_stretch.html b/test_fixtures/grid/grid_align_items_sized_stretch.html new file mode 100644 index 000000000..18bd0d91f --- /dev/null +++ b/test_fixtures/grid/grid_align_items_sized_stretch.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_align_self_sized_all.html b/test_fixtures/grid/grid_align_self_sized_all.html similarity index 84% rename from test_fixtures/grid_align_self_sized_all.html rename to test_fixtures/grid/grid_align_self_sized_all.html index ee7deb629..5edf8ae05 100644 --- a/test_fixtures/grid_align_self_sized_all.html +++ b/test_fixtures/grid/grid_align_self_sized_all.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_aspect_ratio_absolute_aspect_ratio_overrides_height_of_full_inset.html b/test_fixtures/grid/grid_aspect_ratio_absolute_aspect_ratio_overrides_height_of_full_inset.html new file mode 100644 index 000000000..c32a49673 --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_absolute_aspect_ratio_overrides_height_of_full_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_absolute_fill_height_from_inset.html b/test_fixtures/grid/grid_aspect_ratio_absolute_fill_height_from_inset.html new file mode 100644 index 000000000..88e0db060 --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_absolute_fill_height_from_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_absolute_fill_width_from_inset.html b/test_fixtures/grid/grid_aspect_ratio_absolute_fill_width_from_inset.html new file mode 100644 index 000000000..62a4334e7 --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_absolute_fill_width_from_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_absolute_height_overrides_inset.html b/test_fixtures/grid/grid_aspect_ratio_absolute_height_overrides_inset.html new file mode 100644 index 000000000..083ef5a49 --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_absolute_height_overrides_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_absolute_width_overrides_inset.html b/test_fixtures/grid/grid_aspect_ratio_absolute_width_overrides_inset.html new file mode 100644 index 000000000..ed99cd207 --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_absolute_width_overrides_inset.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_child_fill_content_height.html b/test_fixtures/grid/grid_aspect_ratio_child_fill_content_height.html new file mode 100644 index 000000000..6c5449653 --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_child_fill_content_height.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HHHH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_child_fill_content_width.html b/test_fixtures/grid/grid_aspect_ratio_child_fill_content_width.html new file mode 100644 index 000000000..359f03cea --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_child_fill_content_width.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HHHH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_fill_child_height.html b/test_fixtures/grid/grid_aspect_ratio_fill_child_height.html new file mode 100644 index 000000000..afa617a0d --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_fill_child_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_fill_child_max_height.html b/test_fixtures/grid/grid_aspect_ratio_fill_child_max_height.html new file mode 100644 index 000000000..0b053811e --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_fill_child_max_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_fill_child_max_width.html b/test_fixtures/grid/grid_aspect_ratio_fill_child_max_width.html new file mode 100644 index 000000000..6ac1ba97b --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_fill_child_max_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_fill_child_min_height.html b/test_fixtures/grid/grid_aspect_ratio_fill_child_min_height.html new file mode 100644 index 000000000..792221e56 --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_fill_child_min_height.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_fill_child_min_width.html b/test_fixtures/grid/grid_aspect_ratio_fill_child_min_width.html new file mode 100644 index 000000000..49a0dfee7 --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_fill_child_min_width.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+ +
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_fill_child_width.html b/test_fixtures/grid/grid_aspect_ratio_fill_child_width.html new file mode 100644 index 000000000..b37889b36 --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_fill_child_width.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_overriden_by_explicit_sizes.html b/test_fixtures/grid/grid_aspect_ratio_overriden_by_explicit_sizes.html new file mode 100644 index 000000000..f4093c655 --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_overriden_by_explicit_sizes.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_aspect_ratio_overriden_by_explicit_sizes_flex.html b/test_fixtures/grid/grid_aspect_ratio_overriden_by_explicit_sizes_flex.html new file mode 100644 index 000000000..f4093c655 --- /dev/null +++ b/test_fixtures/grid/grid_aspect_ratio_overriden_by_explicit_sizes_flex.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_auto_columns.html b/test_fixtures/grid/grid_auto_columns.html new file mode 100644 index 000000000..dc6628097 --- /dev/null +++ b/test_fixtures/grid/grid_auto_columns.html @@ -0,0 +1,24 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_auto_columns_fixed_width.html b/test_fixtures/grid/grid_auto_columns_fixed_width.html similarity index 76% rename from test_fixtures/grid_auto_columns_fixed_width.html rename to test_fixtures/grid/grid_auto_columns_fixed_width.html index 2dfbfae5d..733814acd 100644 --- a/test_fixtures/grid_auto_columns_fixed_width.html +++ b/test_fixtures/grid/grid_auto_columns_fixed_width.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_auto_fill_fixed_size.html b/test_fixtures/grid/grid_auto_fill_fixed_size.html new file mode 100644 index 000000000..ccfd0d928 --- /dev/null +++ b/test_fixtures/grid/grid_auto_fill_fixed_size.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_auto_fill_with_empty_auto_track.html b/test_fixtures/grid/grid_auto_fill_with_empty_auto_track.html new file mode 100644 index 000000000..2e6f442a5 --- /dev/null +++ b/test_fixtures/grid/grid_auto_fill_with_empty_auto_track.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_auto_fit_with_empty_auto_track.html b/test_fixtures/grid/grid_auto_fit_with_empty_auto_track.html new file mode 100644 index 000000000..1210f69d6 --- /dev/null +++ b/test_fixtures/grid/grid_auto_fit_with_empty_auto_track.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_auto_rows.html b/test_fixtures/grid/grid_auto_rows.html new file mode 100644 index 000000000..823f5a8f4 --- /dev/null +++ b/test_fixtures/grid/grid_auto_rows.html @@ -0,0 +1,24 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_auto_single_item.html b/test_fixtures/grid/grid_auto_single_item.html new file mode 100644 index 000000000..c35f1f602 --- /dev/null +++ b/test_fixtures/grid/grid_auto_single_item.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_auto_single_item_fixed_width.html b/test_fixtures/grid/grid_auto_single_item_fixed_width.html new file mode 100644 index 000000000..7d9f7f35f --- /dev/null +++ b/test_fixtures/grid/grid_auto_single_item_fixed_width.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_auto_single_item_fixed_width_with_definite_width.html b/test_fixtures/grid/grid_auto_single_item_fixed_width_with_definite_width.html new file mode 100644 index 000000000..8eb71e81c --- /dev/null +++ b/test_fixtures/grid/grid_auto_single_item_fixed_width_with_definite_width.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_auto_takes_precedence_over_fr.html b/test_fixtures/grid/grid_auto_takes_precedence_over_fr.html new file mode 100644 index 000000000..5b6c6447c --- /dev/null +++ b/test_fixtures/grid/grid_auto_takes_precedence_over_fr.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_available_space_greater_than_max_content.html b/test_fixtures/grid/grid_available_space_greater_than_max_content.html new file mode 100644 index 000000000..7ce0ba610 --- /dev/null +++ b/test_fixtures/grid/grid_available_space_greater_than_max_content.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
HH​HH​HH​HH
+
HH​HH​HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_available_space_smaller_than_max_content.html b/test_fixtures/grid/grid_available_space_smaller_than_max_content.html new file mode 100644 index 000000000..b5bb00eae --- /dev/null +++ b/test_fixtures/grid/grid_available_space_smaller_than_max_content.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
HH​HH​HH​HH
+
HH​HH​HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_available_space_smaller_than_min_content.html b/test_fixtures/grid/grid_available_space_smaller_than_min_content.html new file mode 100644 index 000000000..7ac0ab043 --- /dev/null +++ b/test_fixtures/grid/grid_available_space_smaller_than_min_content.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
HHHH​HHHH
+
HHHH​HHHH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_basic.html b/test_fixtures/grid/grid_basic.html new file mode 100644 index 000000000..895816fa3 --- /dev/null +++ b/test_fixtures/grid/grid_basic.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_basic_implicit_tracks.html b/test_fixtures/grid/grid_basic_implicit_tracks.html new file mode 100644 index 000000000..0056f4647 --- /dev/null +++ b/test_fixtures/grid/grid_basic_implicit_tracks.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_basic_with_overflow.html b/test_fixtures/grid/grid_basic_with_overflow.html new file mode 100644 index 000000000..044715222 --- /dev/null +++ b/test_fixtures/grid/grid_basic_with_overflow.html @@ -0,0 +1,26 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_basic_with_padding.html b/test_fixtures/grid/grid_basic_with_padding.html new file mode 100644 index 000000000..1e97bf3ed --- /dev/null +++ b/test_fixtures/grid/grid_basic_with_padding.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_display_none_fixed_size.html b/test_fixtures/grid/grid_display_none_fixed_size.html new file mode 100644 index 000000000..5b3700b58 --- /dev/null +++ b/test_fixtures/grid/grid_display_none_fixed_size.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fit_content_percent_definite_argument.html b/test_fixtures/grid/grid_fit_content_percent_definite_argument.html new file mode 100644 index 000000000..0d2ad4f52 --- /dev/null +++ b/test_fixtures/grid/grid_fit_content_percent_definite_argument.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fit_content_percent_definite_max_content.html b/test_fixtures/grid/grid_fit_content_percent_definite_max_content.html new file mode 100644 index 000000000..a61a7b87b --- /dev/null +++ b/test_fixtures/grid/grid_fit_content_percent_definite_max_content.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fit_content_percent_definite_min_content.html b/test_fixtures/grid/grid_fit_content_percent_definite_min_content.html new file mode 100644 index 000000000..8579229bd --- /dev/null +++ b/test_fixtures/grid/grid_fit_content_percent_definite_min_content.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fit_content_percent_indefinite_argument.html b/test_fixtures/grid/grid_fit_content_percent_indefinite_argument.html new file mode 100644 index 000000000..dce2eb224 --- /dev/null +++ b/test_fixtures/grid/grid_fit_content_percent_indefinite_argument.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fit_content_percent_indefinite_max_content.html b/test_fixtures/grid/grid_fit_content_percent_indefinite_max_content.html new file mode 100644 index 000000000..8f6e048ac --- /dev/null +++ b/test_fixtures/grid/grid_fit_content_percent_indefinite_max_content.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fit_content_percent_indefinite_max_content_hidden.html b/test_fixtures/grid/grid_fit_content_percent_indefinite_max_content_hidden.html new file mode 100644 index 000000000..b3e4a1d6f --- /dev/null +++ b/test_fixtures/grid/grid_fit_content_percent_indefinite_max_content_hidden.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fit_content_percent_indefinite_min_content.html b/test_fixtures/grid/grid_fit_content_percent_indefinite_min_content.html new file mode 100644 index 000000000..cb661b609 --- /dev/null +++ b/test_fixtures/grid/grid_fit_content_percent_indefinite_min_content.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fit_content_percent_indefinite_min_content_hidden.html b/test_fixtures/grid/grid_fit_content_percent_indefinite_min_content_hidden.html new file mode 100644 index 000000000..34b198db0 --- /dev/null +++ b/test_fixtures/grid/grid_fit_content_percent_indefinite_min_content_hidden.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fit_content_points_argument.html b/test_fixtures/grid/grid_fit_content_points_argument.html new file mode 100644 index 000000000..f63e7736f --- /dev/null +++ b/test_fixtures/grid/grid_fit_content_points_argument.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fit_content_points_max_content.html b/test_fixtures/grid/grid_fit_content_points_max_content.html new file mode 100644 index 000000000..4d9c2aa24 --- /dev/null +++ b/test_fixtures/grid/grid_fit_content_points_max_content.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fit_content_points_min_content.html b/test_fixtures/grid/grid_fit_content_points_min_content.html new file mode 100644 index 000000000..4381e6bdc --- /dev/null +++ b/test_fixtures/grid/grid_fit_content_points_min_content.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fit_content_points_min_content_hidden.html b/test_fixtures/grid/grid_fit_content_points_min_content_hidden.html new file mode 100644 index 000000000..2cdb2aec9 --- /dev/null +++ b/test_fixtures/grid/grid_fit_content_points_min_content_hidden.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fr_fixed_size_no_content_proportions.html b/test_fixtures/grid/grid_fr_fixed_size_no_content_proportions.html new file mode 100644 index 000000000..836d6479a --- /dev/null +++ b/test_fixtures/grid/grid_fr_fixed_size_no_content_proportions.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fr_fixed_size_no_content_proportions_sub_1_sum.html b/test_fixtures/grid/grid_fr_fixed_size_no_content_proportions_sub_1_sum.html new file mode 100644 index 000000000..36df98b9a --- /dev/null +++ b/test_fixtures/grid/grid_fr_fixed_size_no_content_proportions_sub_1_sum.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fr_fixed_size_single_item.html b/test_fixtures/grid/grid_fr_fixed_size_single_item.html new file mode 100644 index 000000000..3852c445e --- /dev/null +++ b/test_fixtures/grid/grid_fr_fixed_size_single_item.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fr_no_sized_items_indefinite.html b/test_fixtures/grid/grid_fr_no_sized_items_indefinite.html new file mode 100644 index 000000000..eb965e426 --- /dev/null +++ b/test_fixtures/grid/grid_fr_no_sized_items_indefinite.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fr_single_item_indefinite.html b/test_fixtures/grid/grid_fr_single_item_indefinite.html new file mode 100644 index 000000000..4e4d32252 --- /dev/null +++ b/test_fixtures/grid/grid_fr_single_item_indefinite.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fr_span_2_proportion.html b/test_fixtures/grid/grid_fr_span_2_proportion.html new file mode 100644 index 000000000..e658b2014 --- /dev/null +++ b/test_fixtures/grid/grid_fr_span_2_proportion.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fr_span_2_proportion_sub_1_sum.html b/test_fixtures/grid/grid_fr_span_2_proportion_sub_1_sum.html new file mode 100644 index 000000000..b3be043f0 --- /dev/null +++ b/test_fixtures/grid/grid_fr_span_2_proportion_sub_1_sum.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fr_span_2_proportion_with_non_spanned_track.html b/test_fixtures/grid/grid_fr_span_2_proportion_with_non_spanned_track.html new file mode 100644 index 000000000..90e84180b --- /dev/null +++ b/test_fixtures/grid/grid_fr_span_2_proportion_with_non_spanned_track.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fr_span_2_proportion_zero_sum.html b/test_fixtures/grid/grid_fr_span_2_proportion_zero_sum.html new file mode 100644 index 000000000..642a2af83 --- /dev/null +++ b/test_fixtures/grid/grid_fr_span_2_proportion_zero_sum.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_fr_span_2_proportion_zero_sum_with_non_spanned_track.html b/test_fixtures/grid/grid_fr_span_2_proportion_zero_sum_with_non_spanned_track.html new file mode 100644 index 000000000..1fdf8d507 --- /dev/null +++ b/test_fixtures/grid/grid_fr_span_2_proportion_zero_sum_with_non_spanned_track.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_gap.html b/test_fixtures/grid/grid_gap.html new file mode 100644 index 000000000..9de892b43 --- /dev/null +++ b/test_fixtures/grid/grid_gap.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_hidden.html b/test_fixtures/grid/grid_hidden.html similarity index 75% rename from test_fixtures/grid_hidden.html rename to test_fixtures/grid/grid_hidden.html index 7d9d171b9..70847f201 100644 --- a/test_fixtures/grid_hidden.html +++ b/test_fixtures/grid/grid_hidden.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_justify_content_center.html b/test_fixtures/grid/grid_justify_content_center.html new file mode 100644 index 000000000..277282ff8 --- /dev/null +++ b/test_fixtures/grid/grid_justify_content_center.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_justify_content_center_with_padding_border.html b/test_fixtures/grid/grid_justify_content_center_with_padding_border.html similarity index 75% rename from test_fixtures/grid_justify_content_center_with_padding_border.html rename to test_fixtures/grid/grid_justify_content_center_with_padding_border.html index c12290b21..8d2cfd935 100644 --- a/test_fixtures/grid_justify_content_center_with_padding_border.html +++ b/test_fixtures/grid/grid_justify_content_center_with_padding_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_justify_content_end.html b/test_fixtures/grid/grid_justify_content_end.html new file mode 100644 index 000000000..bfd6e78dc --- /dev/null +++ b/test_fixtures/grid/grid_justify_content_end.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_justify_content_end_with_padding_border.html b/test_fixtures/grid/grid_justify_content_end_with_padding_border.html similarity index 75% rename from test_fixtures/grid_justify_content_end_with_padding_border.html rename to test_fixtures/grid/grid_justify_content_end_with_padding_border.html index b73ce4c03..60bea9cdd 100644 --- a/test_fixtures/grid_justify_content_end_with_padding_border.html +++ b/test_fixtures/grid/grid_justify_content_end_with_padding_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_justify_content_space_around.html b/test_fixtures/grid/grid_justify_content_space_around.html new file mode 100644 index 000000000..eea68e617 --- /dev/null +++ b/test_fixtures/grid/grid_justify_content_space_around.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_justify_content_space_around_with_padding_border.html b/test_fixtures/grid/grid_justify_content_space_around_with_padding_border.html similarity index 75% rename from test_fixtures/grid_justify_content_space_around_with_padding_border.html rename to test_fixtures/grid/grid_justify_content_space_around_with_padding_border.html index e31ab915d..0820a2399 100644 --- a/test_fixtures/grid_justify_content_space_around_with_padding_border.html +++ b/test_fixtures/grid/grid_justify_content_space_around_with_padding_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_justify_content_space_between.html b/test_fixtures/grid/grid_justify_content_space_between.html new file mode 100644 index 000000000..206d1aed2 --- /dev/null +++ b/test_fixtures/grid/grid_justify_content_space_between.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_justify_content_space_between_with_padding_border.html b/test_fixtures/grid/grid_justify_content_space_between_with_padding_border.html similarity index 76% rename from test_fixtures/grid_justify_content_space_between_with_padding_border.html rename to test_fixtures/grid/grid_justify_content_space_between_with_padding_border.html index 625af3f1b..67621fcf9 100644 --- a/test_fixtures/grid_justify_content_space_between_with_padding_border.html +++ b/test_fixtures/grid/grid_justify_content_space_between_with_padding_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_justify_content_space_evenly.html b/test_fixtures/grid/grid_justify_content_space_evenly.html new file mode 100644 index 000000000..2cfb56534 --- /dev/null +++ b/test_fixtures/grid/grid_justify_content_space_evenly.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_justify_content_space_evenly_with_padding_border.html b/test_fixtures/grid/grid_justify_content_space_evenly_with_padding_border.html similarity index 75% rename from test_fixtures/grid_justify_content_space_evenly_with_padding_border.html rename to test_fixtures/grid/grid_justify_content_space_evenly_with_padding_border.html index 00fae30be..993d829e3 100644 --- a/test_fixtures/grid_justify_content_space_evenly_with_padding_border.html +++ b/test_fixtures/grid/grid_justify_content_space_evenly_with_padding_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_justify_content_start.html b/test_fixtures/grid/grid_justify_content_start.html new file mode 100644 index 000000000..23da1c6ec --- /dev/null +++ b/test_fixtures/grid/grid_justify_content_start.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_justify_content_start_with_padding_border.html b/test_fixtures/grid/grid_justify_content_start_with_padding_border.html similarity index 75% rename from test_fixtures/grid_justify_content_start_with_padding_border.html rename to test_fixtures/grid/grid_justify_content_start_with_padding_border.html index 4ea195f27..d90fc3a9a 100644 --- a/test_fixtures/grid_justify_content_start_with_padding_border.html +++ b/test_fixtures/grid/grid_justify_content_start_with_padding_border.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_justify_items_sized_center.html b/test_fixtures/grid/grid_justify_items_sized_center.html new file mode 100644 index 000000000..7036d6a20 --- /dev/null +++ b/test_fixtures/grid/grid_justify_items_sized_center.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_justify_items_sized_end.html b/test_fixtures/grid/grid_justify_items_sized_end.html new file mode 100644 index 000000000..42fe58bb2 --- /dev/null +++ b/test_fixtures/grid/grid_justify_items_sized_end.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_justify_items_sized_start.html b/test_fixtures/grid/grid_justify_items_sized_start.html new file mode 100644 index 000000000..5606b9589 --- /dev/null +++ b/test_fixtures/grid/grid_justify_items_sized_start.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_justify_items_sized_stretch.html b/test_fixtures/grid/grid_justify_items_sized_stretch.html new file mode 100644 index 000000000..6aaf3bad4 --- /dev/null +++ b/test_fixtures/grid/grid_justify_items_sized_stretch.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_justify_self_sized_all.html b/test_fixtures/grid/grid_justify_self_sized_all.html similarity index 84% rename from test_fixtures/grid_justify_self_sized_all.html rename to test_fixtures/grid/grid_justify_self_sized_all.html index 6889d092b..36edad1af 100644 --- a/test_fixtures/grid_justify_self_sized_all.html +++ b/test_fixtures/grid/grid_justify_self_sized_all.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_margins_auto_margins.html b/test_fixtures/grid/grid_margins_auto_margins.html similarity index 79% rename from test_fixtures/grid_margins_auto_margins.html rename to test_fixtures/grid/grid_margins_auto_margins.html index 5f7951870..7a9e0fb75 100644 --- a/test_fixtures/grid_margins_auto_margins.html +++ b/test_fixtures/grid/grid_margins_auto_margins.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_margins_auto_margins_override_stretch.html b/test_fixtures/grid/grid_margins_auto_margins_override_stretch.html similarity index 75% rename from test_fixtures/grid_margins_auto_margins_override_stretch.html rename to test_fixtures/grid/grid_margins_auto_margins_override_stretch.html index df1d6e500..e492f42ff 100644 --- a/test_fixtures/grid_margins_auto_margins_override_stretch.html +++ b/test_fixtures/grid/grid_margins_auto_margins_override_stretch.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_margins_fixed_center.html b/test_fixtures/grid/grid_margins_fixed_center.html new file mode 100644 index 000000000..af1ca6ef1 --- /dev/null +++ b/test_fixtures/grid/grid_margins_fixed_center.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_margins_fixed_end.html b/test_fixtures/grid/grid_margins_fixed_end.html new file mode 100644 index 000000000..a207e8b36 --- /dev/null +++ b/test_fixtures/grid/grid_margins_fixed_end.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_margins_fixed_start.html b/test_fixtures/grid/grid_margins_fixed_start.html new file mode 100644 index 000000000..d4814015a --- /dev/null +++ b/test_fixtures/grid/grid_margins_fixed_start.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_margins_fixed_stretch.html b/test_fixtures/grid/grid_margins_fixed_stretch.html new file mode 100644 index 000000000..0f48e616e --- /dev/null +++ b/test_fixtures/grid/grid_margins_fixed_stretch.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_margins_percent_center.html b/test_fixtures/grid/grid_margins_percent_center.html new file mode 100644 index 000000000..0d39ab6ad --- /dev/null +++ b/test_fixtures/grid/grid_margins_percent_center.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_margins_percent_end.html b/test_fixtures/grid/grid_margins_percent_end.html new file mode 100644 index 000000000..1cb806bd1 --- /dev/null +++ b/test_fixtures/grid/grid_margins_percent_end.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_margins_percent_start.html b/test_fixtures/grid/grid_margins_percent_start.html new file mode 100644 index 000000000..d9815445e --- /dev/null +++ b/test_fixtures/grid/grid_margins_percent_start.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_margins_percent_stretch.html b/test_fixtures/grid/grid_margins_percent_stretch.html new file mode 100644 index 000000000..e66917d03 --- /dev/null +++ b/test_fixtures/grid/grid_margins_percent_stretch.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_max_content_maximum_single_item.html b/test_fixtures/grid/grid_max_content_maximum_single_item.html new file mode 100644 index 000000000..d598353a8 --- /dev/null +++ b/test_fixtures/grid/grid_max_content_maximum_single_item.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
HH​HH
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_max_content_single_item.html b/test_fixtures/grid/grid_max_content_single_item.html new file mode 100644 index 000000000..73094d82b --- /dev/null +++ b/test_fixtures/grid/grid_max_content_single_item.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
HH​HH
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_max_content_single_item_margin_auto.html b/test_fixtures/grid/grid_max_content_single_item_margin_auto.html new file mode 100644 index 000000000..6ae7cd9e5 --- /dev/null +++ b/test_fixtures/grid/grid_max_content_single_item_margin_auto.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
HH​HH
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_max_content_single_item_margin_fixed.html b/test_fixtures/grid/grid_max_content_single_item_margin_fixed.html new file mode 100644 index 000000000..fae3b7cfd --- /dev/null +++ b/test_fixtures/grid/grid_max_content_single_item_margin_fixed.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
HH​HH
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_max_content_single_item_margin_percent.html b/test_fixtures/grid/grid_max_content_single_item_margin_percent.html new file mode 100644 index 000000000..661cb8c16 --- /dev/null +++ b/test_fixtures/grid/grid_max_content_single_item_margin_percent.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
HH​HH
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_max_content_single_item_span_2.html b/test_fixtures/grid/grid_max_content_single_item_span_2.html new file mode 100644 index 000000000..8806a26a9 --- /dev/null +++ b/test_fixtures/grid/grid_max_content_single_item_span_2.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
HH​HH
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_max_content_single_item_span_2_gap_fixed.html b/test_fixtures/grid/grid_max_content_single_item_span_2_gap_fixed.html similarity index 75% rename from test_fixtures/grid_max_content_single_item_span_2_gap_fixed.html rename to test_fixtures/grid/grid_max_content_single_item_span_2_gap_fixed.html index f8897d43f..76b31ec9e 100644 --- a/test_fixtures/grid_max_content_single_item_span_2_gap_fixed.html +++ b/test_fixtures/grid/grid_max_content_single_item_span_2_gap_fixed.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_max_content_single_item_span_2_gap_percent_definite.html b/test_fixtures/grid/grid_max_content_single_item_span_2_gap_percent_definite.html similarity index 75% rename from test_fixtures/grid_max_content_single_item_span_2_gap_percent_definite.html rename to test_fixtures/grid/grid_max_content_single_item_span_2_gap_percent_definite.html index f905f498d..c541efea5 100644 --- a/test_fixtures/grid_max_content_single_item_span_2_gap_percent_definite.html +++ b/test_fixtures/grid/grid_max_content_single_item_span_2_gap_percent_definite.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_max_content_single_item_span_2_gap_percent_indefinite.html b/test_fixtures/grid/grid_max_content_single_item_span_2_gap_percent_indefinite.html similarity index 75% rename from test_fixtures/grid_max_content_single_item_span_2_gap_percent_indefinite.html rename to test_fixtures/grid/grid_max_content_single_item_span_2_gap_percent_indefinite.html index b16cc8e58..3c6996739 100644 --- a/test_fixtures/grid_max_content_single_item_span_2_gap_percent_indefinite.html +++ b/test_fixtures/grid/grid_max_content_single_item_span_2_gap_percent_indefinite.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_max_width_greater_than_max_content.html b/test_fixtures/grid/grid_max_width_greater_than_max_content.html new file mode 100644 index 000000000..de126857b --- /dev/null +++ b/test_fixtures/grid/grid_max_width_greater_than_max_content.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
HH​HH​HH​HH
+
HH​HH​HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_max_width_less_than_max_content_with_min_content.html b/test_fixtures/grid/grid_max_width_less_than_max_content_with_min_content.html new file mode 100644 index 000000000..e64fe4320 --- /dev/null +++ b/test_fixtures/grid/grid_max_width_less_than_max_content_with_min_content.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
HH​HH​HH​HH
+
HH​HH​HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_max_width_smaller_than_max_content.html b/test_fixtures/grid/grid_max_width_smaller_than_max_content.html new file mode 100644 index 000000000..75f27bf25 --- /dev/null +++ b/test_fixtures/grid/grid_max_width_smaller_than_max_content.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
HH​HH​HH​HH
+
HH​HH​HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_max_width_smaller_than_min_content.html b/test_fixtures/grid/grid_max_width_smaller_than_min_content.html new file mode 100644 index 000000000..b1fa3a62b --- /dev/null +++ b/test_fixtures/grid/grid_max_width_smaller_than_min_content.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
HHHH​HHHH
+
HHHH​HHHH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_min_content_flex_column.html b/test_fixtures/grid/grid_min_content_flex_column.html new file mode 100644 index 000000000..feb8e8ec1 --- /dev/null +++ b/test_fixtures/grid/grid_min_content_flex_column.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
HH​HH
+
HH​HH
+
HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_min_content_flex_row.html b/test_fixtures/grid/grid_min_content_flex_row.html new file mode 100644 index 000000000..9660bffe4 --- /dev/null +++ b/test_fixtures/grid/grid_min_content_flex_row.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
HH​HH
+
HH​HH
+
HH​HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_min_content_flex_single_item.html b/test_fixtures/grid/grid_min_content_flex_single_item.html new file mode 100644 index 000000000..4be8aaa9a --- /dev/null +++ b/test_fixtures/grid/grid_min_content_flex_single_item.html @@ -0,0 +1,24 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
HH​HH
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_min_content_flex_single_item_margin_auto.html b/test_fixtures/grid/grid_min_content_flex_single_item_margin_auto.html new file mode 100644 index 000000000..3f4ba76c0 --- /dev/null +++ b/test_fixtures/grid/grid_min_content_flex_single_item_margin_auto.html @@ -0,0 +1,24 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
HH​HH
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_min_content_flex_single_item_margin_fixed.html b/test_fixtures/grid/grid_min_content_flex_single_item_margin_fixed.html similarity index 76% rename from test_fixtures/grid_min_content_flex_single_item_margin_fixed.html rename to test_fixtures/grid/grid_min_content_flex_single_item_margin_fixed.html index e867b261b..bac8c604b 100644 --- a/test_fixtures/grid_min_content_flex_single_item_margin_fixed.html +++ b/test_fixtures/grid/grid_min_content_flex_single_item_margin_fixed.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_min_content_flex_single_item_margin_percent.html b/test_fixtures/grid/grid_min_content_flex_single_item_margin_percent.html similarity index 75% rename from test_fixtures/grid_min_content_flex_single_item_margin_percent.html rename to test_fixtures/grid/grid_min_content_flex_single_item_margin_percent.html index b59b4c908..e102f2369 100644 --- a/test_fixtures/grid_min_content_flex_single_item_margin_percent.html +++ b/test_fixtures/grid/grid_min_content_flex_single_item_margin_percent.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_min_content_maximum_single_item.html b/test_fixtures/grid/grid_min_content_maximum_single_item.html new file mode 100644 index 000000000..6254b5ae0 --- /dev/null +++ b/test_fixtures/grid/grid_min_content_maximum_single_item.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
HH​HH
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_min_content_single_item.html b/test_fixtures/grid/grid_min_content_single_item.html new file mode 100644 index 000000000..53eef2c8c --- /dev/null +++ b/test_fixtures/grid/grid_min_content_single_item.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
HH​HH
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_auto_fixed_10px.html b/test_fixtures/grid/grid_minmax_auto_fixed_10px.html new file mode 100644 index 000000000..321b873d2 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_auto_fixed_10px.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_auto_max_content.html b/test_fixtures/grid/grid_minmax_auto_max_content.html new file mode 100644 index 000000000..99f60e081 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_auto_max_content.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_auto_min_content.html b/test_fixtures/grid/grid_minmax_auto_min_content.html new file mode 100644 index 000000000..658fe483d --- /dev/null +++ b/test_fixtures/grid/grid_minmax_auto_min_content.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_auto_percent_definite.html b/test_fixtures/grid/grid_minmax_auto_percent_definite.html new file mode 100644 index 000000000..7e6ccbdd9 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_auto_percent_definite.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_auto_percent_indefinite.html b/test_fixtures/grid/grid_minmax_auto_percent_indefinite.html new file mode 100644 index 000000000..9b208318d --- /dev/null +++ b/test_fixtures/grid/grid_minmax_auto_percent_indefinite.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_column_fixed_width_above_range.html b/test_fixtures/grid/grid_minmax_column_fixed_width_above_range.html new file mode 100644 index 000000000..99f99dd39 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_column_fixed_width_above_range.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_column_fixed_width_below_range.html b/test_fixtures/grid/grid_minmax_column_fixed_width_below_range.html new file mode 100644 index 000000000..093523c1e --- /dev/null +++ b/test_fixtures/grid/grid_minmax_column_fixed_width_below_range.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_column_fixed_width_within_range.html b/test_fixtures/grid/grid_minmax_column_fixed_width_within_range.html new file mode 100644 index 000000000..897da1d01 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_column_fixed_width_within_range.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_column_indefinite.html b/test_fixtures/grid/grid_minmax_column_indefinite.html new file mode 100644 index 000000000..a221183b2 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_column_indefinite.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_column_with_auto_fixed.html b/test_fixtures/grid/grid_minmax_column_with_auto_fixed.html new file mode 100644 index 000000000..dcef084b1 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_column_with_auto_fixed.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_column_with_fr_fixed.html b/test_fixtures/grid/grid_minmax_column_with_fr_fixed.html new file mode 100644 index 000000000..e24b03df9 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_column_with_fr_fixed.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_max_content_1fr.html b/test_fixtures/grid/grid_minmax_max_content_1fr.html new file mode 100644 index 000000000..339135ea1 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_max_content_1fr.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_max_content_auto.html b/test_fixtures/grid/grid_minmax_max_content_auto.html new file mode 100644 index 000000000..911886d39 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_max_content_auto.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_max_content_fixed_10px.html b/test_fixtures/grid/grid_minmax_max_content_fixed_10px.html new file mode 100644 index 000000000..23d02f6a2 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_max_content_fixed_10px.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_max_content_min_content.html b/test_fixtures/grid/grid_minmax_max_content_min_content.html new file mode 100644 index 000000000..67114e22f --- /dev/null +++ b/test_fixtures/grid/grid_minmax_max_content_min_content.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_max_content_percent_definite.html b/test_fixtures/grid/grid_minmax_max_content_percent_definite.html new file mode 100644 index 000000000..1953f7fa0 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_max_content_percent_definite.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_max_content_percent_indefinite.html b/test_fixtures/grid/grid_minmax_max_content_percent_indefinite.html new file mode 100644 index 000000000..806497ff9 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_max_content_percent_indefinite.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_min_content_1fr.html b/test_fixtures/grid/grid_minmax_min_content_1fr.html new file mode 100644 index 000000000..a5b390e55 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_min_content_1fr.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_min_content_auto.html b/test_fixtures/grid/grid_minmax_min_content_auto.html new file mode 100644 index 000000000..c49551a73 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_min_content_auto.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_min_content_fixed_10px.html b/test_fixtures/grid/grid_minmax_min_content_fixed_10px.html new file mode 100644 index 000000000..5952a0ea0 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_min_content_fixed_10px.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_min_content_max_content.html b/test_fixtures/grid/grid_minmax_min_content_max_content.html new file mode 100644 index 000000000..e26e2202b --- /dev/null +++ b/test_fixtures/grid/grid_minmax_min_content_max_content.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_min_content_percent_definite.html b/test_fixtures/grid/grid_minmax_min_content_percent_definite.html new file mode 100644 index 000000000..e0460d972 --- /dev/null +++ b/test_fixtures/grid/grid_minmax_min_content_percent_definite.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_minmax_min_content_percent_indefinite.html b/test_fixtures/grid/grid_minmax_min_content_percent_indefinite.html new file mode 100644 index 000000000..c1e0dce5d --- /dev/null +++ b/test_fixtures/grid/grid_minmax_min_content_percent_indefinite.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_out_of_order_items.html b/test_fixtures/grid/grid_out_of_order_items.html similarity index 79% rename from test_fixtures/grid_out_of_order_items.html rename to test_fixtures/grid/grid_out_of_order_items.html index 8e07db2fe..21ae662c7 100644 --- a/test_fixtures/grid_out_of_order_items.html +++ b/test_fixtures/grid/grid_out_of_order_items.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_overflow_inline_axis_hidden.html b/test_fixtures/grid/grid_overflow_inline_axis_hidden.html new file mode 100644 index 000000000..63ddf9042 --- /dev/null +++ b/test_fixtures/grid/grid_overflow_inline_axis_hidden.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHHHHHHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_overflow_inline_axis_scroll.html b/test_fixtures/grid/grid_overflow_inline_axis_scroll.html new file mode 100644 index 000000000..b8800faa7 --- /dev/null +++ b/test_fixtures/grid/grid_overflow_inline_axis_scroll.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHHHHHHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_overflow_inline_axis_visible.html b/test_fixtures/grid/grid_overflow_inline_axis_visible.html new file mode 100644 index 000000000..66a97d9bf --- /dev/null +++ b/test_fixtures/grid/grid_overflow_inline_axis_visible.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
HHHHHHHHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_overflow_rows.html b/test_fixtures/grid/grid_overflow_rows.html new file mode 100644 index 000000000..7337e488d --- /dev/null +++ b/test_fixtures/grid/grid_overflow_rows.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
HHHHHHHHHHHHHHHH​HHHHHHHHHHHHHHHH
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_overflow_scrollbars_overriden_by_available_space.html b/test_fixtures/grid/grid_overflow_scrollbars_overriden_by_available_space.html new file mode 100644 index 000000000..3f03c8213 --- /dev/null +++ b/test_fixtures/grid/grid_overflow_scrollbars_overriden_by_available_space.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_overflow_scrollbars_overriden_by_max_size.html b/test_fixtures/grid/grid_overflow_scrollbars_overriden_by_max_size.html new file mode 100644 index 000000000..d7a01958f --- /dev/null +++ b/test_fixtures/grid/grid_overflow_scrollbars_overriden_by_max_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_overflow_scrollbars_overriden_by_size.html b/test_fixtures/grid/grid_overflow_scrollbars_overriden_by_size.html new file mode 100644 index 000000000..8be3471dd --- /dev/null +++ b/test_fixtures/grid/grid_overflow_scrollbars_overriden_by_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_overflow_scrollbars_take_up_space_both_axis.html b/test_fixtures/grid/grid_overflow_scrollbars_take_up_space_both_axis.html new file mode 100644 index 000000000..56147366a --- /dev/null +++ b/test_fixtures/grid/grid_overflow_scrollbars_take_up_space_both_axis.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_overflow_scrollbars_take_up_space_x_axis.html b/test_fixtures/grid/grid_overflow_scrollbars_take_up_space_x_axis.html new file mode 100644 index 000000000..9c6893d9d --- /dev/null +++ b/test_fixtures/grid/grid_overflow_scrollbars_take_up_space_x_axis.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_overflow_scrollbars_take_up_space_y_axis.html b/test_fixtures/grid/grid_overflow_scrollbars_take_up_space_y_axis.html new file mode 100644 index 000000000..5cbea5edc --- /dev/null +++ b/test_fixtures/grid/grid_overflow_scrollbars_take_up_space_y_axis.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_padding_border_overrides_container_max_size.html b/test_fixtures/grid/grid_padding_border_overrides_container_max_size.html new file mode 100644 index 000000000..2ea3ae900 --- /dev/null +++ b/test_fixtures/grid/grid_padding_border_overrides_container_max_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_padding_border_overrides_container_size.html b/test_fixtures/grid/grid_padding_border_overrides_container_size.html new file mode 100644 index 000000000..0331a795c --- /dev/null +++ b/test_fixtures/grid/grid_padding_border_overrides_container_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_padding_border_overrides_max_size.html b/test_fixtures/grid/grid_padding_border_overrides_max_size.html new file mode 100644 index 000000000..449a6a7c8 --- /dev/null +++ b/test_fixtures/grid/grid_padding_border_overrides_max_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_padding_border_overrides_min_size.html b/test_fixtures/grid/grid_padding_border_overrides_min_size.html new file mode 100644 index 000000000..ef0343fde --- /dev/null +++ b/test_fixtures/grid/grid_padding_border_overrides_min_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_padding_border_overrides_size.html b/test_fixtures/grid/grid_padding_border_overrides_size.html new file mode 100644 index 000000000..1e1884244 --- /dev/null +++ b/test_fixtures/grid/grid_padding_border_overrides_size.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_percent_item_inside_stretch_item.html b/test_fixtures/grid/grid_percent_item_inside_stretch_item.html new file mode 100644 index 000000000..a37a7d0e8 --- /dev/null +++ b/test_fixtures/grid/grid_percent_item_inside_stretch_item.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_percent_items_nested_inside_stretch_alignment.html b/test_fixtures/grid/grid_percent_items_nested_inside_stretch_alignment.html new file mode 100644 index 000000000..5a92ad6a2 --- /dev/null +++ b/test_fixtures/grid/grid_percent_items_nested_inside_stretch_alignment.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_percent_items_nested_moderate.html b/test_fixtures/grid/grid_percent_items_nested_moderate.html new file mode 100644 index 000000000..29f265f1e --- /dev/null +++ b/test_fixtures/grid/grid_percent_items_nested_moderate.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_percent_items_nested_with_margin.html b/test_fixtures/grid/grid_percent_items_nested_with_margin.html new file mode 100644 index 000000000..81cbba85a --- /dev/null +++ b/test_fixtures/grid/grid_percent_items_nested_with_margin.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_percent_items_nested_with_padding_margin.html b/test_fixtures/grid/grid_percent_items_nested_with_padding_margin.html similarity index 75% rename from test_fixtures/grid_percent_items_nested_with_padding_margin.html rename to test_fixtures/grid/grid_percent_items_nested_with_padding_margin.html index 44e5c87ab..072f87b5c 100644 --- a/test_fixtures/grid_percent_items_nested_with_padding_margin.html +++ b/test_fixtures/grid/grid_percent_items_nested_with_padding_margin.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_percent_items_width_and_margin.html b/test_fixtures/grid/grid_percent_items_width_and_margin.html new file mode 100644 index 000000000..2b49a286a --- /dev/null +++ b/test_fixtures/grid/grid_percent_items_width_and_margin.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_percent_items_width_and_padding.html b/test_fixtures/grid/grid_percent_items_width_and_padding.html new file mode 100644 index 000000000..2ba826e8e --- /dev/null +++ b/test_fixtures/grid/grid_percent_items_width_and_padding.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_percent_tracks_definite_overflow.html b/test_fixtures/grid/grid_percent_tracks_definite_overflow.html new file mode 100644 index 000000000..1b3d7777c --- /dev/null +++ b/test_fixtures/grid/grid_percent_tracks_definite_overflow.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_percent_tracks_definite_underflow.html b/test_fixtures/grid/grid_percent_tracks_definite_underflow.html new file mode 100644 index 000000000..cb2619ad8 --- /dev/null +++ b/test_fixtures/grid/grid_percent_tracks_definite_underflow.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_percent_tracks_indefinite_only.html b/test_fixtures/grid/grid_percent_tracks_indefinite_only.html new file mode 100644 index 000000000..a71b27719 --- /dev/null +++ b/test_fixtures/grid/grid_percent_tracks_indefinite_only.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_percent_tracks_indefinite_with_content_overflow.html b/test_fixtures/grid/grid_percent_tracks_indefinite_with_content_overflow.html new file mode 100644 index 000000000..bb1308909 --- /dev/null +++ b/test_fixtures/grid/grid_percent_tracks_indefinite_with_content_overflow.html @@ -0,0 +1,23 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_percent_tracks_indefinite_with_content_underflow.html b/test_fixtures/grid/grid_percent_tracks_indefinite_with_content_underflow.html new file mode 100644 index 000000000..a21eb563b --- /dev/null +++ b/test_fixtures/grid/grid_percent_tracks_indefinite_with_content_underflow.html @@ -0,0 +1,23 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_placement_auto_negative.html b/test_fixtures/grid/grid_placement_auto_negative.html new file mode 100644 index 000000000..194f64b77 --- /dev/null +++ b/test_fixtures/grid/grid_placement_auto_negative.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_placement_definite_in_secondary_axis_with_fully_definite_negative.html b/test_fixtures/grid/grid_placement_definite_in_secondary_axis_with_fully_definite_negative.html new file mode 100644 index 000000000..90957774f --- /dev/null +++ b/test_fixtures/grid/grid_placement_definite_in_secondary_axis_with_fully_definite_negative.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_relative_all_sides.html b/test_fixtures/grid/grid_relative_all_sides.html new file mode 100644 index 000000000..37ef04484 --- /dev/null +++ b/test_fixtures/grid/grid_relative_all_sides.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_relayout_vertical_text.html b/test_fixtures/grid/grid_relayout_vertical_text.html new file mode 100644 index 000000000..fe7938c49 --- /dev/null +++ b/test_fixtures/grid/grid_relayout_vertical_text.html @@ -0,0 +1,18 @@ + + + + + + + Test description + + + + +
+
HH​HH​HH​HH​HH​HH​HH
+
HH​HH​HH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_repeat_integer.html b/test_fixtures/grid/grid_repeat_integer.html new file mode 100644 index 000000000..560cb3a98 --- /dev/null +++ b/test_fixtures/grid/grid_repeat_integer.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_repeat_mixed.html b/test_fixtures/grid/grid_repeat_mixed.html new file mode 100644 index 000000000..db19dbb64 --- /dev/null +++ b/test_fixtures/grid/grid_repeat_mixed.html @@ -0,0 +1,25 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_size_child_fixed_tracks.html b/test_fixtures/grid/grid_size_child_fixed_tracks.html similarity index 84% rename from test_fixtures/grid_size_child_fixed_tracks.html rename to test_fixtures/grid/grid_size_child_fixed_tracks.html index 5e50ef063..9aa5a2b22 100644 --- a/test_fixtures/grid_size_child_fixed_tracks.html +++ b/test_fixtures/grid/grid_size_child_fixed_tracks.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_span_13_most_non_flex_with_minmax_indefinite.html b/test_fixtures/grid/grid_span_13_most_non_flex_with_minmax_indefinite.html similarity index 82% rename from test_fixtures/grid_span_13_most_non_flex_with_minmax_indefinite.html rename to test_fixtures/grid/grid_span_13_most_non_flex_with_minmax_indefinite.html index d7bfdbb7f..567e65391 100644 --- a/test_fixtures/grid_span_13_most_non_flex_with_minmax_indefinite.html +++ b/test_fixtures/grid/grid_span_13_most_non_flex_with_minmax_indefinite.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid_span_13_most_non_flex_with_minmax_indefinite_hidden.html b/test_fixtures/grid/grid_span_13_most_non_flex_with_minmax_indefinite_hidden.html similarity index 82% rename from test_fixtures/grid_span_13_most_non_flex_with_minmax_indefinite_hidden.html rename to test_fixtures/grid/grid_span_13_most_non_flex_with_minmax_indefinite_hidden.html index f73c152be..94fe0f1bd 100644 --- a/test_fixtures/grid_span_13_most_non_flex_with_minmax_indefinite_hidden.html +++ b/test_fixtures/grid/grid_span_13_most_non_flex_with_minmax_indefinite_hidden.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/grid_span_2_max_content_auto_indefinite.html b/test_fixtures/grid/grid_span_2_max_content_auto_indefinite.html new file mode 100644 index 000000000..7f7a13eac --- /dev/null +++ b/test_fixtures/grid/grid_span_2_max_content_auto_indefinite.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_max_content_auto_indefinite_hidden.html b/test_fixtures/grid/grid_span_2_max_content_auto_indefinite_hidden.html new file mode 100644 index 000000000..9eb26d9ad --- /dev/null +++ b/test_fixtures/grid/grid_span_2_max_content_auto_indefinite_hidden.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+ + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_max_content_fit_content_10px_indefinite_hidden.html b/test_fixtures/grid/grid_span_2_max_content_fit_content_10px_indefinite_hidden.html new file mode 100644 index 000000000..427d40623 --- /dev/null +++ b/test_fixtures/grid/grid_span_2_max_content_fit_content_10px_indefinite_hidden.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_max_content_fit_content_80px_indefinite.html b/test_fixtures/grid/grid_span_2_max_content_fit_content_80px_indefinite.html new file mode 100644 index 000000000..e218a7038 --- /dev/null +++ b/test_fixtures/grid/grid_span_2_max_content_fit_content_80px_indefinite.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_max_content_fit_content_80px_indefinite_hidden.html b/test_fixtures/grid/grid_span_2_max_content_fit_content_80px_indefinite_hidden.html new file mode 100644 index 000000000..562787c16 --- /dev/null +++ b/test_fixtures/grid/grid_span_2_max_content_fit_content_80px_indefinite_hidden.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_max_content_max_content_indefinite.html b/test_fixtures/grid/grid_span_2_max_content_max_content_indefinite.html new file mode 100644 index 000000000..30e22427d --- /dev/null +++ b/test_fixtures/grid/grid_span_2_max_content_max_content_indefinite.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_min_content_auto_indefinite.html b/test_fixtures/grid/grid_span_2_min_content_auto_indefinite.html new file mode 100644 index 000000000..77d2e0a89 --- /dev/null +++ b/test_fixtures/grid/grid_span_2_min_content_auto_indefinite.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_min_content_auto_indefinite_hidden.html b/test_fixtures/grid/grid_span_2_min_content_auto_indefinite_hidden.html new file mode 100644 index 000000000..b15525c66 --- /dev/null +++ b/test_fixtures/grid/grid_span_2_min_content_auto_indefinite_hidden.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_min_content_fit_content_10px_indefinite.html b/test_fixtures/grid/grid_span_2_min_content_fit_content_10px_indefinite.html new file mode 100644 index 000000000..fe1f832a1 --- /dev/null +++ b/test_fixtures/grid/grid_span_2_min_content_fit_content_10px_indefinite.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_min_content_fit_content_10px_indefinite_hidden.html b/test_fixtures/grid/grid_span_2_min_content_fit_content_10px_indefinite_hidden.html new file mode 100644 index 000000000..f9c04f360 --- /dev/null +++ b/test_fixtures/grid/grid_span_2_min_content_fit_content_10px_indefinite_hidden.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_min_content_fit_content_30px_indefinite.html b/test_fixtures/grid/grid_span_2_min_content_fit_content_30px_indefinite.html new file mode 100644 index 000000000..73e538af6 --- /dev/null +++ b/test_fixtures/grid/grid_span_2_min_content_fit_content_30px_indefinite.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_min_content_fit_content_30px_indefinite_hidden.html b/test_fixtures/grid/grid_span_2_min_content_fit_content_30px_indefinite_hidden.html new file mode 100644 index 000000000..ab397726c --- /dev/null +++ b/test_fixtures/grid/grid_span_2_min_content_fit_content_30px_indefinite_hidden.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_min_content_fit_content_80px_indefinite.html b/test_fixtures/grid/grid_span_2_min_content_fit_content_80px_indefinite.html new file mode 100644 index 000000000..a075eaeda --- /dev/null +++ b/test_fixtures/grid/grid_span_2_min_content_fit_content_80px_indefinite.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_min_content_fit_content_80px_indefinite_hidden.html b/test_fixtures/grid/grid_span_2_min_content_fit_content_80px_indefinite_hidden.html new file mode 100644 index 000000000..c73c0a626 --- /dev/null +++ b/test_fixtures/grid/grid_span_2_min_content_fit_content_80px_indefinite_hidden.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_min_content_max_content_indefinite.html b/test_fixtures/grid/grid_span_2_min_content_max_content_indefinite.html new file mode 100644 index 000000000..3e459e084 --- /dev/null +++ b/test_fixtures/grid/grid_span_2_min_content_max_content_indefinite.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_2_min_content_min_content_indefinite.html b/test_fixtures/grid/grid_span_2_min_content_min_content_indefinite.html new file mode 100644 index 000000000..eb59db43b --- /dev/null +++ b/test_fixtures/grid/grid_span_2_min_content_min_content_indefinite.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
HHHH​HHHH
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_6_all_non_flex_indefinite.html b/test_fixtures/grid/grid_span_6_all_non_flex_indefinite.html new file mode 100644 index 000000000..f7def99b5 --- /dev/null +++ b/test_fixtures/grid/grid_span_6_all_non_flex_indefinite.html @@ -0,0 +1,23 @@ + + + + + + + Test description + + + + +
+
HHHHHHHH​HHHHHHHH
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/grid_span_6_all_non_flex_indefinite_hidden.html b/test_fixtures/grid/grid_span_6_all_non_flex_indefinite_hidden.html new file mode 100644 index 000000000..4d5fc0ead --- /dev/null +++ b/test_fixtures/grid/grid_span_6_all_non_flex_indefinite_hidden.html @@ -0,0 +1,23 @@ + + + + + + + Test description + + + + +
+
HHHHHHHH​HHHHHHHH
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_span_8_all_track_types_indefinite.html b/test_fixtures/grid/grid_span_8_all_track_types_indefinite.html similarity index 75% rename from test_fixtures/grid_span_8_all_track_types_indefinite.html rename to test_fixtures/grid/grid_span_8_all_track_types_indefinite.html index 9b05d98db..500025130 100644 --- a/test_fixtures/grid_span_8_all_track_types_indefinite.html +++ b/test_fixtures/grid/grid_span_8_all_track_types_indefinite.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/grid/xgrid_fr_span_2_proportion_sub_1_sum_with_non_spanned_track.html b/test_fixtures/grid/xgrid_fr_span_2_proportion_sub_1_sum_with_non_spanned_track.html new file mode 100644 index 000000000..a0995ea29 --- /dev/null +++ b/test_fixtures/grid/xgrid_fr_span_2_proportion_sub_1_sum_with_non_spanned_track.html @@ -0,0 +1,21 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid/xgrid_span_2_max_content_minmax_max_content_min_content_indefinite.html b/test_fixtures/grid/xgrid_span_2_max_content_minmax_max_content_min_content_indefinite.html new file mode 100644 index 000000000..20396673f --- /dev/null +++ b/test_fixtures/grid/xgrid_span_2_max_content_minmax_max_content_min_content_indefinite.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
HHHH​HHHH
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/grid_absolute_column_end.html b/test_fixtures/grid_absolute_column_end.html deleted file mode 100644 index f04c1a425..000000000 --- a/test_fixtures/grid_absolute_column_end.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_absolute_column_start.html b/test_fixtures/grid_absolute_column_start.html deleted file mode 100644 index 336473660..000000000 --- a/test_fixtures/grid_absolute_column_start.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_absolute_row_end.html b/test_fixtures/grid_absolute_row_end.html deleted file mode 100644 index 724d3715d..000000000 --- a/test_fixtures/grid_absolute_row_end.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_absolute_row_start.html b/test_fixtures/grid_absolute_row_start.html deleted file mode 100644 index 1c9441b5f..000000000 --- a/test_fixtures/grid_absolute_row_start.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_content_center.html b/test_fixtures/grid_align_content_center.html deleted file mode 100644 index 04631fdb7..000000000 --- a/test_fixtures/grid_align_content_center.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_content_end.html b/test_fixtures/grid_align_content_end.html deleted file mode 100644 index 578f896f5..000000000 --- a/test_fixtures/grid_align_content_end.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_content_space_around.html b/test_fixtures/grid_align_content_space_around.html deleted file mode 100644 index 154c59d7e..000000000 --- a/test_fixtures/grid_align_content_space_around.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_content_space_between.html b/test_fixtures/grid_align_content_space_between.html deleted file mode 100644 index 3673d2de1..000000000 --- a/test_fixtures/grid_align_content_space_between.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_content_space_evenly.html b/test_fixtures/grid_align_content_space_evenly.html deleted file mode 100644 index 9c6c49f00..000000000 --- a/test_fixtures/grid_align_content_space_evenly.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_content_start.html b/test_fixtures/grid_align_content_start.html deleted file mode 100644 index b941ab0c3..000000000 --- a/test_fixtures/grid_align_content_start.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_items_baseline.html b/test_fixtures/grid_align_items_baseline.html deleted file mode 100644 index ed61ae4ac..000000000 --- a/test_fixtures/grid_align_items_baseline.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_items_baseline_child.html b/test_fixtures/grid_align_items_baseline_child.html deleted file mode 100644 index eb16924b3..000000000 --- a/test_fixtures/grid_align_items_baseline_child.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_items_baseline_child_margin.html b/test_fixtures/grid_align_items_baseline_child_margin.html deleted file mode 100644 index 968745e81..000000000 --- a/test_fixtures/grid_align_items_baseline_child_margin.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_items_baseline_child_margin_percent.html b/test_fixtures/grid_align_items_baseline_child_margin_percent.html deleted file mode 100644 index 7e336aba7..000000000 --- a/test_fixtures/grid_align_items_baseline_child_margin_percent.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_items_baseline_child_padding.html b/test_fixtures/grid_align_items_baseline_child_padding.html deleted file mode 100644 index 3b695ef99..000000000 --- a/test_fixtures/grid_align_items_baseline_child_padding.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_items_baseline_child_top.html b/test_fixtures/grid_align_items_baseline_child_top.html deleted file mode 100644 index 65813fa7d..000000000 --- a/test_fixtures/grid_align_items_baseline_child_top.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_items_baseline_child_top2.html b/test_fixtures/grid_align_items_baseline_child_top2.html deleted file mode 100644 index 09fd5342a..000000000 --- a/test_fixtures/grid_align_items_baseline_child_top2.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_items_sized_center.html b/test_fixtures/grid_align_items_sized_center.html deleted file mode 100644 index 652d8e097..000000000 --- a/test_fixtures/grid_align_items_sized_center.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_items_sized_end.html b/test_fixtures/grid_align_items_sized_end.html deleted file mode 100644 index ddac6231d..000000000 --- a/test_fixtures/grid_align_items_sized_end.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_items_sized_start.html b/test_fixtures/grid_align_items_sized_start.html deleted file mode 100644 index 4f597ea9c..000000000 --- a/test_fixtures/grid_align_items_sized_start.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_align_items_sized_stretch.html b/test_fixtures/grid_align_items_sized_stretch.html deleted file mode 100644 index dbfcbab74..000000000 --- a/test_fixtures/grid_align_items_sized_stretch.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_absolute_aspect_ratio_overrides_height_of_full_inset.html b/test_fixtures/grid_aspect_ratio_absolute_aspect_ratio_overrides_height_of_full_inset.html deleted file mode 100644 index a197f43e6..000000000 --- a/test_fixtures/grid_aspect_ratio_absolute_aspect_ratio_overrides_height_of_full_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_absolute_fill_height_from_inset.html b/test_fixtures/grid_aspect_ratio_absolute_fill_height_from_inset.html deleted file mode 100644 index ec955d1f0..000000000 --- a/test_fixtures/grid_aspect_ratio_absolute_fill_height_from_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_absolute_fill_width_from_inset.html b/test_fixtures/grid_aspect_ratio_absolute_fill_width_from_inset.html deleted file mode 100644 index 1e24542a9..000000000 --- a/test_fixtures/grid_aspect_ratio_absolute_fill_width_from_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_absolute_height_overrides_inset.html b/test_fixtures/grid_aspect_ratio_absolute_height_overrides_inset.html deleted file mode 100644 index 08f0686aa..000000000 --- a/test_fixtures/grid_aspect_ratio_absolute_height_overrides_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_absolute_width_overrides_inset.html b/test_fixtures/grid_aspect_ratio_absolute_width_overrides_inset.html deleted file mode 100644 index 5dc7676bd..000000000 --- a/test_fixtures/grid_aspect_ratio_absolute_width_overrides_inset.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_child_fill_content_height.html b/test_fixtures/grid_aspect_ratio_child_fill_content_height.html deleted file mode 100644 index 417eb42bc..000000000 --- a/test_fixtures/grid_aspect_ratio_child_fill_content_height.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_child_fill_content_width.html b/test_fixtures/grid_aspect_ratio_child_fill_content_width.html deleted file mode 100644 index 983e58b2b..000000000 --- a/test_fixtures/grid_aspect_ratio_child_fill_content_width.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_fill_child_height.html b/test_fixtures/grid_aspect_ratio_fill_child_height.html deleted file mode 100644 index 47216cae4..000000000 --- a/test_fixtures/grid_aspect_ratio_fill_child_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_fill_child_max_height.html b/test_fixtures/grid_aspect_ratio_fill_child_max_height.html deleted file mode 100644 index 0d18d8446..000000000 --- a/test_fixtures/grid_aspect_ratio_fill_child_max_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_fill_child_max_width.html b/test_fixtures/grid_aspect_ratio_fill_child_max_width.html deleted file mode 100644 index f528b89bc..000000000 --- a/test_fixtures/grid_aspect_ratio_fill_child_max_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_fill_child_min_height.html b/test_fixtures/grid_aspect_ratio_fill_child_min_height.html deleted file mode 100644 index 9901b7f74..000000000 --- a/test_fixtures/grid_aspect_ratio_fill_child_min_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_fill_child_min_width.html b/test_fixtures/grid_aspect_ratio_fill_child_min_width.html deleted file mode 100644 index fa9cbe8ed..000000000 --- a/test_fixtures/grid_aspect_ratio_fill_child_min_width.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
- -
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_fill_child_width.html b/test_fixtures/grid_aspect_ratio_fill_child_width.html deleted file mode 100644 index 76ccd6ec3..000000000 --- a/test_fixtures/grid_aspect_ratio_fill_child_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_overriden_by_explicit_sizes.html b/test_fixtures/grid_aspect_ratio_overriden_by_explicit_sizes.html deleted file mode 100644 index 81258ee0f..000000000 --- a/test_fixtures/grid_aspect_ratio_overriden_by_explicit_sizes.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_aspect_ratio_overriden_by_explicit_sizes_flex.html b/test_fixtures/grid_aspect_ratio_overriden_by_explicit_sizes_flex.html deleted file mode 100644 index 81258ee0f..000000000 --- a/test_fixtures/grid_aspect_ratio_overriden_by_explicit_sizes_flex.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_auto_columns.html b/test_fixtures/grid_auto_columns.html deleted file mode 100644 index 7e717bef0..000000000 --- a/test_fixtures/grid_auto_columns.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_auto_fill_fixed_size.html b/test_fixtures/grid_auto_fill_fixed_size.html deleted file mode 100644 index aa806c901..000000000 --- a/test_fixtures/grid_auto_fill_fixed_size.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_auto_fill_with_empty_auto_track.html b/test_fixtures/grid_auto_fill_with_empty_auto_track.html deleted file mode 100644 index 0bf36b6b9..000000000 --- a/test_fixtures/grid_auto_fill_with_empty_auto_track.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_auto_fit_with_empty_auto_track.html b/test_fixtures/grid_auto_fit_with_empty_auto_track.html deleted file mode 100644 index 905502a08..000000000 --- a/test_fixtures/grid_auto_fit_with_empty_auto_track.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_auto_rows.html b/test_fixtures/grid_auto_rows.html deleted file mode 100644 index 19f55d5bc..000000000 --- a/test_fixtures/grid_auto_rows.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_auto_single_item.html b/test_fixtures/grid_auto_single_item.html deleted file mode 100644 index a8cde33dd..000000000 --- a/test_fixtures/grid_auto_single_item.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_auto_single_item_fixed_width.html b/test_fixtures/grid_auto_single_item_fixed_width.html deleted file mode 100644 index 782290eeb..000000000 --- a/test_fixtures/grid_auto_single_item_fixed_width.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_auto_single_item_fixed_width_with_definite_width.html b/test_fixtures/grid_auto_single_item_fixed_width_with_definite_width.html deleted file mode 100644 index cb0450d57..000000000 --- a/test_fixtures/grid_auto_single_item_fixed_width_with_definite_width.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_auto_takes_precedence_over_fr.html b/test_fixtures/grid_auto_takes_precedence_over_fr.html deleted file mode 100644 index 81c0849c3..000000000 --- a/test_fixtures/grid_auto_takes_precedence_over_fr.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_available_space_greater_than_max_content.html b/test_fixtures/grid_available_space_greater_than_max_content.html deleted file mode 100644 index 4674700d8..000000000 --- a/test_fixtures/grid_available_space_greater_than_max_content.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH​HH​HH
-
HH​HH​HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_available_space_smaller_than_max_content.html b/test_fixtures/grid_available_space_smaller_than_max_content.html deleted file mode 100644 index f952ac4a2..000000000 --- a/test_fixtures/grid_available_space_smaller_than_max_content.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH​HH​HH
-
HH​HH​HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_available_space_smaller_than_min_content.html b/test_fixtures/grid_available_space_smaller_than_min_content.html deleted file mode 100644 index a848831d7..000000000 --- a/test_fixtures/grid_available_space_smaller_than_min_content.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HHHH​HHHH
-
HHHH​HHHH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_basic.html b/test_fixtures/grid_basic.html deleted file mode 100644 index 803a88f7a..000000000 --- a/test_fixtures/grid_basic.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_basic_implicit_tracks.html b/test_fixtures/grid_basic_implicit_tracks.html deleted file mode 100644 index e6d670cb9..000000000 --- a/test_fixtures/grid_basic_implicit_tracks.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_basic_with_overflow.html b/test_fixtures/grid_basic_with_overflow.html deleted file mode 100644 index 1bdbb1654..000000000 --- a/test_fixtures/grid_basic_with_overflow.html +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_basic_with_padding.html b/test_fixtures/grid_basic_with_padding.html deleted file mode 100644 index fa2070eec..000000000 --- a/test_fixtures/grid_basic_with_padding.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_display_none_fixed_size.html b/test_fixtures/grid_display_none_fixed_size.html deleted file mode 100644 index a44ada009..000000000 --- a/test_fixtures/grid_display_none_fixed_size.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fit_content_percent_definite_argument.html b/test_fixtures/grid_fit_content_percent_definite_argument.html deleted file mode 100644 index facb921cb..000000000 --- a/test_fixtures/grid_fit_content_percent_definite_argument.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fit_content_percent_definite_max_content.html b/test_fixtures/grid_fit_content_percent_definite_max_content.html deleted file mode 100644 index 1327af2f7..000000000 --- a/test_fixtures/grid_fit_content_percent_definite_max_content.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fit_content_percent_definite_min_content.html b/test_fixtures/grid_fit_content_percent_definite_min_content.html deleted file mode 100644 index 5ec17c629..000000000 --- a/test_fixtures/grid_fit_content_percent_definite_min_content.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fit_content_percent_indefinite_argument.html b/test_fixtures/grid_fit_content_percent_indefinite_argument.html deleted file mode 100644 index 01a5e407c..000000000 --- a/test_fixtures/grid_fit_content_percent_indefinite_argument.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fit_content_percent_indefinite_max_content.html b/test_fixtures/grid_fit_content_percent_indefinite_max_content.html deleted file mode 100644 index 6227b70a3..000000000 --- a/test_fixtures/grid_fit_content_percent_indefinite_max_content.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fit_content_percent_indefinite_max_content_hidden.html b/test_fixtures/grid_fit_content_percent_indefinite_max_content_hidden.html deleted file mode 100644 index d368d167c..000000000 --- a/test_fixtures/grid_fit_content_percent_indefinite_max_content_hidden.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fit_content_percent_indefinite_min_content.html b/test_fixtures/grid_fit_content_percent_indefinite_min_content.html deleted file mode 100644 index 9f5af668f..000000000 --- a/test_fixtures/grid_fit_content_percent_indefinite_min_content.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fit_content_percent_indefinite_min_content_hidden.html b/test_fixtures/grid_fit_content_percent_indefinite_min_content_hidden.html deleted file mode 100644 index 86f1507a4..000000000 --- a/test_fixtures/grid_fit_content_percent_indefinite_min_content_hidden.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fit_content_points_argument.html b/test_fixtures/grid_fit_content_points_argument.html deleted file mode 100644 index 4e783fea7..000000000 --- a/test_fixtures/grid_fit_content_points_argument.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fit_content_points_max_content.html b/test_fixtures/grid_fit_content_points_max_content.html deleted file mode 100644 index d4a1c9692..000000000 --- a/test_fixtures/grid_fit_content_points_max_content.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fit_content_points_min_content.html b/test_fixtures/grid_fit_content_points_min_content.html deleted file mode 100644 index 6fa0912fc..000000000 --- a/test_fixtures/grid_fit_content_points_min_content.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fit_content_points_min_content_hidden.html b/test_fixtures/grid_fit_content_points_min_content_hidden.html deleted file mode 100644 index c13fe0a6a..000000000 --- a/test_fixtures/grid_fit_content_points_min_content_hidden.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fr_fixed_size_no_content_proportions.html b/test_fixtures/grid_fr_fixed_size_no_content_proportions.html deleted file mode 100644 index 61befbdc1..000000000 --- a/test_fixtures/grid_fr_fixed_size_no_content_proportions.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fr_fixed_size_no_content_proportions_sub_1_sum.html b/test_fixtures/grid_fr_fixed_size_no_content_proportions_sub_1_sum.html deleted file mode 100644 index aa3c01cf9..000000000 --- a/test_fixtures/grid_fr_fixed_size_no_content_proportions_sub_1_sum.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fr_fixed_size_single_item.html b/test_fixtures/grid_fr_fixed_size_single_item.html deleted file mode 100644 index 0d7ef7316..000000000 --- a/test_fixtures/grid_fr_fixed_size_single_item.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fr_no_sized_items_indefinite.html b/test_fixtures/grid_fr_no_sized_items_indefinite.html deleted file mode 100644 index 1fbd62e63..000000000 --- a/test_fixtures/grid_fr_no_sized_items_indefinite.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fr_single_item_indefinite.html b/test_fixtures/grid_fr_single_item_indefinite.html deleted file mode 100644 index 1268e5a9c..000000000 --- a/test_fixtures/grid_fr_single_item_indefinite.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fr_span_2_proportion.html b/test_fixtures/grid_fr_span_2_proportion.html deleted file mode 100644 index eed1cb69b..000000000 --- a/test_fixtures/grid_fr_span_2_proportion.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fr_span_2_proportion_sub_1_sum.html b/test_fixtures/grid_fr_span_2_proportion_sub_1_sum.html deleted file mode 100644 index ab0439dcd..000000000 --- a/test_fixtures/grid_fr_span_2_proportion_sub_1_sum.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fr_span_2_proportion_with_non_spanned_track.html b/test_fixtures/grid_fr_span_2_proportion_with_non_spanned_track.html deleted file mode 100644 index 28d590d12..000000000 --- a/test_fixtures/grid_fr_span_2_proportion_with_non_spanned_track.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fr_span_2_proportion_zero_sum.html b/test_fixtures/grid_fr_span_2_proportion_zero_sum.html deleted file mode 100644 index 03ce23687..000000000 --- a/test_fixtures/grid_fr_span_2_proportion_zero_sum.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_fr_span_2_proportion_zero_sum_with_non_spanned_track.html b/test_fixtures/grid_fr_span_2_proportion_zero_sum_with_non_spanned_track.html deleted file mode 100644 index dd9c068a5..000000000 --- a/test_fixtures/grid_fr_span_2_proportion_zero_sum_with_non_spanned_track.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_gap.html b/test_fixtures/grid_gap.html deleted file mode 100644 index ff1eab73f..000000000 --- a/test_fixtures/grid_gap.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_justify_content_center.html b/test_fixtures/grid_justify_content_center.html deleted file mode 100644 index 3ef4109af..000000000 --- a/test_fixtures/grid_justify_content_center.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_justify_content_end.html b/test_fixtures/grid_justify_content_end.html deleted file mode 100644 index 277add66d..000000000 --- a/test_fixtures/grid_justify_content_end.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_justify_content_space_around.html b/test_fixtures/grid_justify_content_space_around.html deleted file mode 100644 index 56b3e0e59..000000000 --- a/test_fixtures/grid_justify_content_space_around.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_justify_content_space_between.html b/test_fixtures/grid_justify_content_space_between.html deleted file mode 100644 index accffd3a7..000000000 --- a/test_fixtures/grid_justify_content_space_between.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_justify_content_space_evenly.html b/test_fixtures/grid_justify_content_space_evenly.html deleted file mode 100644 index d704638ab..000000000 --- a/test_fixtures/grid_justify_content_space_evenly.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_justify_content_start.html b/test_fixtures/grid_justify_content_start.html deleted file mode 100644 index f857db757..000000000 --- a/test_fixtures/grid_justify_content_start.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_justify_items_sized_center.html b/test_fixtures/grid_justify_items_sized_center.html deleted file mode 100644 index 09c7fd8a7..000000000 --- a/test_fixtures/grid_justify_items_sized_center.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_justify_items_sized_end.html b/test_fixtures/grid_justify_items_sized_end.html deleted file mode 100644 index 6cc516fcc..000000000 --- a/test_fixtures/grid_justify_items_sized_end.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_justify_items_sized_start.html b/test_fixtures/grid_justify_items_sized_start.html deleted file mode 100644 index 86a085355..000000000 --- a/test_fixtures/grid_justify_items_sized_start.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_justify_items_sized_stretch.html b/test_fixtures/grid_justify_items_sized_stretch.html deleted file mode 100644 index faf98a17b..000000000 --- a/test_fixtures/grid_justify_items_sized_stretch.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_margins_fixed_center.html b/test_fixtures/grid_margins_fixed_center.html deleted file mode 100644 index 37209aeba..000000000 --- a/test_fixtures/grid_margins_fixed_center.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_margins_fixed_end.html b/test_fixtures/grid_margins_fixed_end.html deleted file mode 100644 index 6951fbaa3..000000000 --- a/test_fixtures/grid_margins_fixed_end.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_margins_fixed_start.html b/test_fixtures/grid_margins_fixed_start.html deleted file mode 100644 index bfcfb3df2..000000000 --- a/test_fixtures/grid_margins_fixed_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_margins_fixed_stretch.html b/test_fixtures/grid_margins_fixed_stretch.html deleted file mode 100644 index 131352c64..000000000 --- a/test_fixtures/grid_margins_fixed_stretch.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_margins_percent_center.html b/test_fixtures/grid_margins_percent_center.html deleted file mode 100644 index a94a88c95..000000000 --- a/test_fixtures/grid_margins_percent_center.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_margins_percent_end.html b/test_fixtures/grid_margins_percent_end.html deleted file mode 100644 index e98eb0653..000000000 --- a/test_fixtures/grid_margins_percent_end.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_margins_percent_start.html b/test_fixtures/grid_margins_percent_start.html deleted file mode 100644 index 5c35e6f91..000000000 --- a/test_fixtures/grid_margins_percent_start.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_margins_percent_stretch.html b/test_fixtures/grid_margins_percent_stretch.html deleted file mode 100644 index 43e09fc8f..000000000 --- a/test_fixtures/grid_margins_percent_stretch.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_max_content_maximum_single_item.html b/test_fixtures/grid_max_content_maximum_single_item.html deleted file mode 100644 index e3baf2a24..000000000 --- a/test_fixtures/grid_max_content_maximum_single_item.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_max_content_single_item.html b/test_fixtures/grid_max_content_single_item.html deleted file mode 100644 index 0ca3bcbab..000000000 --- a/test_fixtures/grid_max_content_single_item.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_max_content_single_item_margin_auto.html b/test_fixtures/grid_max_content_single_item_margin_auto.html deleted file mode 100644 index 4d68c51ae..000000000 --- a/test_fixtures/grid_max_content_single_item_margin_auto.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_max_content_single_item_margin_fixed.html b/test_fixtures/grid_max_content_single_item_margin_fixed.html deleted file mode 100644 index eb4dafc2d..000000000 --- a/test_fixtures/grid_max_content_single_item_margin_fixed.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_max_content_single_item_margin_percent.html b/test_fixtures/grid_max_content_single_item_margin_percent.html deleted file mode 100644 index 8f2ca64a6..000000000 --- a/test_fixtures/grid_max_content_single_item_margin_percent.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_max_content_single_item_span_2.html b/test_fixtures/grid_max_content_single_item_span_2.html deleted file mode 100644 index 06f128706..000000000 --- a/test_fixtures/grid_max_content_single_item_span_2.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_max_width_greater_than_max_content.html b/test_fixtures/grid_max_width_greater_than_max_content.html deleted file mode 100644 index 88918ce10..000000000 --- a/test_fixtures/grid_max_width_greater_than_max_content.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH​HH​HH
-
HH​HH​HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_max_width_less_than_max_content_with_min_content.html b/test_fixtures/grid_max_width_less_than_max_content_with_min_content.html deleted file mode 100644 index 5fe02bf63..000000000 --- a/test_fixtures/grid_max_width_less_than_max_content_with_min_content.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH​HH​HH
-
HH​HH​HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_max_width_smaller_than_max_content.html b/test_fixtures/grid_max_width_smaller_than_max_content.html deleted file mode 100644 index 6ca0be76a..000000000 --- a/test_fixtures/grid_max_width_smaller_than_max_content.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH​HH​HH
-
HH​HH​HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_max_width_smaller_than_min_content.html b/test_fixtures/grid_max_width_smaller_than_min_content.html deleted file mode 100644 index 26d21dbce..000000000 --- a/test_fixtures/grid_max_width_smaller_than_min_content.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HHHH​HHHH
-
HHHH​HHHH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_min_content_flex_column.html b/test_fixtures/grid_min_content_flex_column.html deleted file mode 100644 index 2c01413d4..000000000 --- a/test_fixtures/grid_min_content_flex_column.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH
-
HH​HH
-
HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_min_content_flex_row.html b/test_fixtures/grid_min_content_flex_row.html deleted file mode 100644 index e4704c739..000000000 --- a/test_fixtures/grid_min_content_flex_row.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH
-
HH​HH
-
HH​HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_min_content_flex_single_item.html b/test_fixtures/grid_min_content_flex_single_item.html deleted file mode 100644 index 1ba34e88b..000000000 --- a/test_fixtures/grid_min_content_flex_single_item.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
HH​HH
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_min_content_flex_single_item_margin_auto.html b/test_fixtures/grid_min_content_flex_single_item_margin_auto.html deleted file mode 100644 index 9b8971ff6..000000000 --- a/test_fixtures/grid_min_content_flex_single_item_margin_auto.html +++ /dev/null @@ -1,24 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
HH​HH
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_min_content_maximum_single_item.html b/test_fixtures/grid_min_content_maximum_single_item.html deleted file mode 100644 index 658ad28a3..000000000 --- a/test_fixtures/grid_min_content_maximum_single_item.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_min_content_single_item.html b/test_fixtures/grid_min_content_single_item.html deleted file mode 100644 index 88ba2d4ee..000000000 --- a/test_fixtures/grid_min_content_single_item.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH​HH
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_auto_fixed_10px.html b/test_fixtures/grid_minmax_auto_fixed_10px.html deleted file mode 100644 index c0372bb3e..000000000 --- a/test_fixtures/grid_minmax_auto_fixed_10px.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_auto_max_content.html b/test_fixtures/grid_minmax_auto_max_content.html deleted file mode 100644 index c39cc19ac..000000000 --- a/test_fixtures/grid_minmax_auto_max_content.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_auto_min_content.html b/test_fixtures/grid_minmax_auto_min_content.html deleted file mode 100644 index 7883fae87..000000000 --- a/test_fixtures/grid_minmax_auto_min_content.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_auto_percent_definite.html b/test_fixtures/grid_minmax_auto_percent_definite.html deleted file mode 100644 index c6b3a8b56..000000000 --- a/test_fixtures/grid_minmax_auto_percent_definite.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_auto_percent_indefinite.html b/test_fixtures/grid_minmax_auto_percent_indefinite.html deleted file mode 100644 index 00ba2892d..000000000 --- a/test_fixtures/grid_minmax_auto_percent_indefinite.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_column_fixed_width_above_range.html b/test_fixtures/grid_minmax_column_fixed_width_above_range.html deleted file mode 100644 index c215333f9..000000000 --- a/test_fixtures/grid_minmax_column_fixed_width_above_range.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_column_fixed_width_below_range.html b/test_fixtures/grid_minmax_column_fixed_width_below_range.html deleted file mode 100644 index d85932b69..000000000 --- a/test_fixtures/grid_minmax_column_fixed_width_below_range.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_column_fixed_width_within_range.html b/test_fixtures/grid_minmax_column_fixed_width_within_range.html deleted file mode 100644 index bf131f4e7..000000000 --- a/test_fixtures/grid_minmax_column_fixed_width_within_range.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_column_indefinite.html b/test_fixtures/grid_minmax_column_indefinite.html deleted file mode 100644 index 13bc9fb26..000000000 --- a/test_fixtures/grid_minmax_column_indefinite.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_column_with_auto_fixed.html b/test_fixtures/grid_minmax_column_with_auto_fixed.html deleted file mode 100644 index 2881d3862..000000000 --- a/test_fixtures/grid_minmax_column_with_auto_fixed.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_column_with_fr_fixed.html b/test_fixtures/grid_minmax_column_with_fr_fixed.html deleted file mode 100644 index 48de90a99..000000000 --- a/test_fixtures/grid_minmax_column_with_fr_fixed.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_max_content_1fr.html b/test_fixtures/grid_minmax_max_content_1fr.html deleted file mode 100644 index b2c248548..000000000 --- a/test_fixtures/grid_minmax_max_content_1fr.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_max_content_auto.html b/test_fixtures/grid_minmax_max_content_auto.html deleted file mode 100644 index bae805205..000000000 --- a/test_fixtures/grid_minmax_max_content_auto.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_max_content_fixed_10px.html b/test_fixtures/grid_minmax_max_content_fixed_10px.html deleted file mode 100644 index b5031e690..000000000 --- a/test_fixtures/grid_minmax_max_content_fixed_10px.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_max_content_min_content.html b/test_fixtures/grid_minmax_max_content_min_content.html deleted file mode 100644 index 8cb79a22e..000000000 --- a/test_fixtures/grid_minmax_max_content_min_content.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_max_content_percent_definite.html b/test_fixtures/grid_minmax_max_content_percent_definite.html deleted file mode 100644 index cb6f0e744..000000000 --- a/test_fixtures/grid_minmax_max_content_percent_definite.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_max_content_percent_indefinite.html b/test_fixtures/grid_minmax_max_content_percent_indefinite.html deleted file mode 100644 index 6c37b9723..000000000 --- a/test_fixtures/grid_minmax_max_content_percent_indefinite.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_min_content_1fr.html b/test_fixtures/grid_minmax_min_content_1fr.html deleted file mode 100644 index 5dbd46f09..000000000 --- a/test_fixtures/grid_minmax_min_content_1fr.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_min_content_auto.html b/test_fixtures/grid_minmax_min_content_auto.html deleted file mode 100644 index 6c621ea88..000000000 --- a/test_fixtures/grid_minmax_min_content_auto.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_min_content_fixed_10px.html b/test_fixtures/grid_minmax_min_content_fixed_10px.html deleted file mode 100644 index ee986f731..000000000 --- a/test_fixtures/grid_minmax_min_content_fixed_10px.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_min_content_max_content.html b/test_fixtures/grid_minmax_min_content_max_content.html deleted file mode 100644 index 50b17c859..000000000 --- a/test_fixtures/grid_minmax_min_content_max_content.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_min_content_percent_definite.html b/test_fixtures/grid_minmax_min_content_percent_definite.html deleted file mode 100644 index 1413374a7..000000000 --- a/test_fixtures/grid_minmax_min_content_percent_definite.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_minmax_min_content_percent_indefinite.html b/test_fixtures/grid_minmax_min_content_percent_indefinite.html deleted file mode 100644 index a9c5a88dc..000000000 --- a/test_fixtures/grid_minmax_min_content_percent_indefinite.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_overflow_inline_axis_hidden.html b/test_fixtures/grid_overflow_inline_axis_hidden.html deleted file mode 100644 index 3417c1a03..000000000 --- a/test_fixtures/grid_overflow_inline_axis_hidden.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHHHHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_overflow_inline_axis_scroll.html b/test_fixtures/grid_overflow_inline_axis_scroll.html deleted file mode 100644 index f8fd7573f..000000000 --- a/test_fixtures/grid_overflow_inline_axis_scroll.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHHHHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_overflow_inline_axis_visible.html b/test_fixtures/grid_overflow_inline_axis_visible.html deleted file mode 100644 index 8247c51ca..000000000 --- a/test_fixtures/grid_overflow_inline_axis_visible.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHHHHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_overflow_rows.html b/test_fixtures/grid_overflow_rows.html deleted file mode 100644 index 0fc731b23..000000000 --- a/test_fixtures/grid_overflow_rows.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHHHHHHHHHHHH​HHHHHHHHHHHHHHHH
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_overflow_scrollbars_overriden_by_available_space.html b/test_fixtures/grid_overflow_scrollbars_overriden_by_available_space.html deleted file mode 100644 index 479619d52..000000000 --- a/test_fixtures/grid_overflow_scrollbars_overriden_by_available_space.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_overflow_scrollbars_overriden_by_max_size.html b/test_fixtures/grid_overflow_scrollbars_overriden_by_max_size.html deleted file mode 100644 index fad00654c..000000000 --- a/test_fixtures/grid_overflow_scrollbars_overriden_by_max_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_overflow_scrollbars_overriden_by_size.html b/test_fixtures/grid_overflow_scrollbars_overriden_by_size.html deleted file mode 100644 index 33be4cc8b..000000000 --- a/test_fixtures/grid_overflow_scrollbars_overriden_by_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_overflow_scrollbars_take_up_space_both_axis.html b/test_fixtures/grid_overflow_scrollbars_take_up_space_both_axis.html deleted file mode 100644 index f795b8ab1..000000000 --- a/test_fixtures/grid_overflow_scrollbars_take_up_space_both_axis.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_overflow_scrollbars_take_up_space_x_axis.html b/test_fixtures/grid_overflow_scrollbars_take_up_space_x_axis.html deleted file mode 100644 index 3047f1b4f..000000000 --- a/test_fixtures/grid_overflow_scrollbars_take_up_space_x_axis.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_overflow_scrollbars_take_up_space_y_axis.html b/test_fixtures/grid_overflow_scrollbars_take_up_space_y_axis.html deleted file mode 100644 index b226ca8a8..000000000 --- a/test_fixtures/grid_overflow_scrollbars_take_up_space_y_axis.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_padding_border_overrides_container_max_size.html b/test_fixtures/grid_padding_border_overrides_container_max_size.html deleted file mode 100644 index 1d2313e1c..000000000 --- a/test_fixtures/grid_padding_border_overrides_container_max_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_padding_border_overrides_container_size.html b/test_fixtures/grid_padding_border_overrides_container_size.html deleted file mode 100644 index c54a2b3eb..000000000 --- a/test_fixtures/grid_padding_border_overrides_container_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_padding_border_overrides_max_size.html b/test_fixtures/grid_padding_border_overrides_max_size.html deleted file mode 100644 index 66c0b4dd6..000000000 --- a/test_fixtures/grid_padding_border_overrides_max_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_padding_border_overrides_min_size.html b/test_fixtures/grid_padding_border_overrides_min_size.html deleted file mode 100644 index 8d5ac03d6..000000000 --- a/test_fixtures/grid_padding_border_overrides_min_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_padding_border_overrides_size.html b/test_fixtures/grid_padding_border_overrides_size.html deleted file mode 100644 index df3fb00bb..000000000 --- a/test_fixtures/grid_padding_border_overrides_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_percent_item_inside_stretch_item.html b/test_fixtures/grid_percent_item_inside_stretch_item.html deleted file mode 100644 index ca9fcb160..000000000 --- a/test_fixtures/grid_percent_item_inside_stretch_item.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_percent_items_nested_inside_stretch_alignment.html b/test_fixtures/grid_percent_items_nested_inside_stretch_alignment.html deleted file mode 100644 index e6d7381ae..000000000 --- a/test_fixtures/grid_percent_items_nested_inside_stretch_alignment.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_percent_items_nested_moderate.html b/test_fixtures/grid_percent_items_nested_moderate.html deleted file mode 100644 index 7699e871a..000000000 --- a/test_fixtures/grid_percent_items_nested_moderate.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_percent_items_nested_with_margin.html b/test_fixtures/grid_percent_items_nested_with_margin.html deleted file mode 100644 index 083d6e644..000000000 --- a/test_fixtures/grid_percent_items_nested_with_margin.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_percent_items_width_and_margin.html b/test_fixtures/grid_percent_items_width_and_margin.html deleted file mode 100644 index 2614084ae..000000000 --- a/test_fixtures/grid_percent_items_width_and_margin.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_percent_items_width_and_padding.html b/test_fixtures/grid_percent_items_width_and_padding.html deleted file mode 100644 index 016fcf293..000000000 --- a/test_fixtures/grid_percent_items_width_and_padding.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_percent_tracks_definite_overflow.html b/test_fixtures/grid_percent_tracks_definite_overflow.html deleted file mode 100644 index ca54fa8d9..000000000 --- a/test_fixtures/grid_percent_tracks_definite_overflow.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_percent_tracks_definite_underflow.html b/test_fixtures/grid_percent_tracks_definite_underflow.html deleted file mode 100644 index 966e0d369..000000000 --- a/test_fixtures/grid_percent_tracks_definite_underflow.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_percent_tracks_indefinite_only.html b/test_fixtures/grid_percent_tracks_indefinite_only.html deleted file mode 100644 index be45a7265..000000000 --- a/test_fixtures/grid_percent_tracks_indefinite_only.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_percent_tracks_indefinite_with_content_overflow.html b/test_fixtures/grid_percent_tracks_indefinite_with_content_overflow.html deleted file mode 100644 index cdcdd06bf..000000000 --- a/test_fixtures/grid_percent_tracks_indefinite_with_content_overflow.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_percent_tracks_indefinite_with_content_underflow.html b/test_fixtures/grid_percent_tracks_indefinite_with_content_underflow.html deleted file mode 100644 index f84554151..000000000 --- a/test_fixtures/grid_percent_tracks_indefinite_with_content_underflow.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_placement_auto_negative.html b/test_fixtures/grid_placement_auto_negative.html deleted file mode 100644 index d7388a681..000000000 --- a/test_fixtures/grid_placement_auto_negative.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_placement_definite_in_secondary_axis_with_fully_definite_negative.html b/test_fixtures/grid_placement_definite_in_secondary_axis_with_fully_definite_negative.html deleted file mode 100644 index c0e8b9bc0..000000000 --- a/test_fixtures/grid_placement_definite_in_secondary_axis_with_fully_definite_negative.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_relative_all_sides.html b/test_fixtures/grid_relative_all_sides.html deleted file mode 100644 index d46d2f587..000000000 --- a/test_fixtures/grid_relative_all_sides.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_relayout_vertical_text.html b/test_fixtures/grid_relayout_vertical_text.html deleted file mode 100644 index c7c8ce24e..000000000 --- a/test_fixtures/grid_relayout_vertical_text.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH​HH​HH​HH​HH​HH
-
HH​HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_repeat_integer.html b/test_fixtures/grid_repeat_integer.html deleted file mode 100644 index 4cbdd200c..000000000 --- a/test_fixtures/grid_repeat_integer.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_repeat_mixed.html b/test_fixtures/grid_repeat_mixed.html deleted file mode 100644 index e8a6ed173..000000000 --- a/test_fixtures/grid_repeat_mixed.html +++ /dev/null @@ -1,25 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_max_content_auto_indefinite.html b/test_fixtures/grid_span_2_max_content_auto_indefinite.html deleted file mode 100644 index 41203af60..000000000 --- a/test_fixtures/grid_span_2_max_content_auto_indefinite.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_max_content_auto_indefinite_hidden.html b/test_fixtures/grid_span_2_max_content_auto_indefinite_hidden.html deleted file mode 100644 index 754f35974..000000000 --- a/test_fixtures/grid_span_2_max_content_auto_indefinite_hidden.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_max_content_fit_content_10px_indefinite_hidden.html b/test_fixtures/grid_span_2_max_content_fit_content_10px_indefinite_hidden.html deleted file mode 100644 index 6d907d305..000000000 --- a/test_fixtures/grid_span_2_max_content_fit_content_10px_indefinite_hidden.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_max_content_fit_content_80px_indefinite.html b/test_fixtures/grid_span_2_max_content_fit_content_80px_indefinite.html deleted file mode 100644 index 430cb86fa..000000000 --- a/test_fixtures/grid_span_2_max_content_fit_content_80px_indefinite.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_max_content_fit_content_80px_indefinite_hidden.html b/test_fixtures/grid_span_2_max_content_fit_content_80px_indefinite_hidden.html deleted file mode 100644 index 1a8fccc00..000000000 --- a/test_fixtures/grid_span_2_max_content_fit_content_80px_indefinite_hidden.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_max_content_max_content_indefinite.html b/test_fixtures/grid_span_2_max_content_max_content_indefinite.html deleted file mode 100644 index 1432df769..000000000 --- a/test_fixtures/grid_span_2_max_content_max_content_indefinite.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_min_content_auto_indefinite.html b/test_fixtures/grid_span_2_min_content_auto_indefinite.html deleted file mode 100644 index 10f78d4f9..000000000 --- a/test_fixtures/grid_span_2_min_content_auto_indefinite.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_min_content_auto_indefinite_hidden.html b/test_fixtures/grid_span_2_min_content_auto_indefinite_hidden.html deleted file mode 100644 index bd2eb2193..000000000 --- a/test_fixtures/grid_span_2_min_content_auto_indefinite_hidden.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_min_content_fit_content_10px_indefinite.html b/test_fixtures/grid_span_2_min_content_fit_content_10px_indefinite.html deleted file mode 100644 index 75738e86f..000000000 --- a/test_fixtures/grid_span_2_min_content_fit_content_10px_indefinite.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_min_content_fit_content_10px_indefinite_hidden.html b/test_fixtures/grid_span_2_min_content_fit_content_10px_indefinite_hidden.html deleted file mode 100644 index 1725684eb..000000000 --- a/test_fixtures/grid_span_2_min_content_fit_content_10px_indefinite_hidden.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_min_content_fit_content_30px_indefinite.html b/test_fixtures/grid_span_2_min_content_fit_content_30px_indefinite.html deleted file mode 100644 index 9f2afd28a..000000000 --- a/test_fixtures/grid_span_2_min_content_fit_content_30px_indefinite.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_min_content_fit_content_30px_indefinite_hidden.html b/test_fixtures/grid_span_2_min_content_fit_content_30px_indefinite_hidden.html deleted file mode 100644 index e72075dbd..000000000 --- a/test_fixtures/grid_span_2_min_content_fit_content_30px_indefinite_hidden.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_min_content_fit_content_80px_indefinite.html b/test_fixtures/grid_span_2_min_content_fit_content_80px_indefinite.html deleted file mode 100644 index 5104376d2..000000000 --- a/test_fixtures/grid_span_2_min_content_fit_content_80px_indefinite.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_min_content_fit_content_80px_indefinite_hidden.html b/test_fixtures/grid_span_2_min_content_fit_content_80px_indefinite_hidden.html deleted file mode 100644 index 2b631612d..000000000 --- a/test_fixtures/grid_span_2_min_content_fit_content_80px_indefinite_hidden.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_min_content_max_content_indefinite.html b/test_fixtures/grid_span_2_min_content_max_content_indefinite.html deleted file mode 100644 index 7e9b78c90..000000000 --- a/test_fixtures/grid_span_2_min_content_max_content_indefinite.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_2_min_content_min_content_indefinite.html b/test_fixtures/grid_span_2_min_content_min_content_indefinite.html deleted file mode 100644 index 9e642881b..000000000 --- a/test_fixtures/grid_span_2_min_content_min_content_indefinite.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
HHHH​HHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_6_all_non_flex_indefinite.html b/test_fixtures/grid_span_6_all_non_flex_indefinite.html deleted file mode 100644 index 905506f2e..000000000 --- a/test_fixtures/grid_span_6_all_non_flex_indefinite.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHHHH​HHHHHHHH
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/grid_span_6_all_non_flex_indefinite_hidden.html b/test_fixtures/grid_span_6_all_non_flex_indefinite_hidden.html deleted file mode 100644 index 234e55eda..000000000 --- a/test_fixtures/grid_span_6_all_non_flex_indefinite_hidden.html +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHHHH​HHHHHHHH
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gridflex/gridflex_column_integration.html b/test_fixtures/gridflex/gridflex_column_integration.html new file mode 100644 index 000000000..d2db8aa6d --- /dev/null +++ b/test_fixtures/gridflex/gridflex_column_integration.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
HH
+
HH
+
HH
+
HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/gridflex_kitchen_sink.html b/test_fixtures/gridflex/gridflex_kitchen_sink.html similarity index 80% rename from test_fixtures/gridflex_kitchen_sink.html rename to test_fixtures/gridflex/gridflex_kitchen_sink.html index ba04e90e5..4aa4a5b3e 100644 --- a/test_fixtures/gridflex_kitchen_sink.html +++ b/test_fixtures/gridflex/gridflex_kitchen_sink.html @@ -1,8 +1,8 @@ - - + + Test description diff --git a/test_fixtures/gridflex/gridflex_kitchen_sink_minimise.html b/test_fixtures/gridflex/gridflex_kitchen_sink_minimise.html new file mode 100644 index 000000000..9c6018419 --- /dev/null +++ b/test_fixtures/gridflex/gridflex_kitchen_sink_minimise.html @@ -0,0 +1,20 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/gridflex/gridflex_kitchen_sink_minimise2.html b/test_fixtures/gridflex/gridflex_kitchen_sink_minimise2.html new file mode 100644 index 000000000..15cf0f1d8 --- /dev/null +++ b/test_fixtures/gridflex/gridflex_kitchen_sink_minimise2.html @@ -0,0 +1,19 @@ + + + + + + + Test description + + + + +
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/gridflex/gridflex_kitchen_sink_minimise3.html b/test_fixtures/gridflex/gridflex_kitchen_sink_minimise3.html new file mode 100644 index 000000000..9a5b6677a --- /dev/null +++ b/test_fixtures/gridflex/gridflex_kitchen_sink_minimise3.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
+
+
+
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/gridflex/gridflex_row_integration.html b/test_fixtures/gridflex/gridflex_row_integration.html new file mode 100644 index 000000000..dd0bbb3e6 --- /dev/null +++ b/test_fixtures/gridflex/gridflex_row_integration.html @@ -0,0 +1,22 @@ + + + + + + + Test description + + + + +
+
+
HH
+
HH
+
HH
+
HH
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/gridflex_column_integration.html b/test_fixtures/gridflex_column_integration.html deleted file mode 100644 index 3cff62f09..000000000 --- a/test_fixtures/gridflex_column_integration.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH
-
HH
-
HH
-
HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gridflex_kitchen_sink_minimise.html b/test_fixtures/gridflex_kitchen_sink_minimise.html deleted file mode 100644 index a5c7200f9..000000000 --- a/test_fixtures/gridflex_kitchen_sink_minimise.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gridflex_kitchen_sink_minimise2.html b/test_fixtures/gridflex_kitchen_sink_minimise2.html deleted file mode 100644 index 12dffe714..000000000 --- a/test_fixtures/gridflex_kitchen_sink_minimise2.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gridflex_kitchen_sink_minimise3.html b/test_fixtures/gridflex_kitchen_sink_minimise3.html deleted file mode 100644 index f321eec5c..000000000 --- a/test_fixtures/gridflex_kitchen_sink_minimise3.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/gridflex_row_integration.html b/test_fixtures/gridflex_row_integration.html deleted file mode 100644 index 6054a3d6f..000000000 --- a/test_fixtures/gridflex_row_integration.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH
-
HH
-
HH
-
HH
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/intrinsic_sizing_cross_size_column.html b/test_fixtures/intrinsic_sizing_cross_size_column.html deleted file mode 100644 index 720546e0b..000000000 --- a/test_fixtures/intrinsic_sizing_cross_size_column.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
HH​HH
- - - \ No newline at end of file diff --git a/test_fixtures/intrinsic_sizing_main_size_column.html b/test_fixtures/intrinsic_sizing_main_size_column.html deleted file mode 100644 index 2c3a7baab..000000000 --- a/test_fixtures/intrinsic_sizing_main_size_column.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
HH​HH
- - - \ No newline at end of file diff --git a/test_fixtures/intrinsic_sizing_main_size_column_nested.html b/test_fixtures/intrinsic_sizing_main_size_column_nested.html deleted file mode 100644 index 9a146ca3a..000000000 --- a/test_fixtures/intrinsic_sizing_main_size_column_nested.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/intrinsic_sizing_main_size_column_wrap.html b/test_fixtures/intrinsic_sizing_main_size_column_wrap.html deleted file mode 100644 index 3eba41565..000000000 --- a/test_fixtures/intrinsic_sizing_main_size_column_wrap.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/intrinsic_sizing_main_size_row.html b/test_fixtures/intrinsic_sizing_main_size_row.html deleted file mode 100644 index 1b0da1c81..000000000 --- a/test_fixtures/intrinsic_sizing_main_size_row.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
HH​HH
- - - \ No newline at end of file diff --git a/test_fixtures/intrinsic_sizing_main_size_row_nested.html b/test_fixtures/intrinsic_sizing_main_size_row_nested.html deleted file mode 100644 index ab644af99..000000000 --- a/test_fixtures/intrinsic_sizing_main_size_row_nested.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/intrinsic_sizing_main_size_row_wrap.html b/test_fixtures/intrinsic_sizing_main_size_row_wrap.html deleted file mode 100644 index 7b1bac9a0..000000000 --- a/test_fixtures/intrinsic_sizing_main_size_row_wrap.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
HH​HH
-
HH​HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_column_center.html b/test_fixtures/justify_content_column_center.html deleted file mode 100644 index 267a98d94..000000000 --- a/test_fixtures/justify_content_column_center.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_column_flex_end.html b/test_fixtures/justify_content_column_flex_end.html deleted file mode 100644 index caaaf46b4..000000000 --- a/test_fixtures/justify_content_column_flex_end.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_column_flex_start.html b/test_fixtures/justify_content_column_flex_start.html deleted file mode 100644 index 8855cb96f..000000000 --- a/test_fixtures/justify_content_column_flex_start.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_column_min_height_and_margin_bottom.html b/test_fixtures/justify_content_column_min_height_and_margin_bottom.html deleted file mode 100644 index 56c7dc703..000000000 --- a/test_fixtures/justify_content_column_min_height_and_margin_bottom.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_column_min_height_and_margin_top.html b/test_fixtures/justify_content_column_min_height_and_margin_top.html deleted file mode 100644 index eea1be992..000000000 --- a/test_fixtures/justify_content_column_min_height_and_margin_top.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_column_space_around.html b/test_fixtures/justify_content_column_space_around.html deleted file mode 100644 index 1ea7ca5a2..000000000 --- a/test_fixtures/justify_content_column_space_around.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_column_space_between.html b/test_fixtures/justify_content_column_space_between.html deleted file mode 100644 index bcadd56fc..000000000 --- a/test_fixtures/justify_content_column_space_between.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_column_space_evenly.html b/test_fixtures/justify_content_column_space_evenly.html deleted file mode 100644 index b9e1db252..000000000 --- a/test_fixtures/justify_content_column_space_evenly.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_min_max.html b/test_fixtures/justify_content_min_max.html deleted file mode 100644 index 2e7b9e830..000000000 --- a/test_fixtures/justify_content_min_max.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_overflow_min_max.html b/test_fixtures/justify_content_overflow_min_max.html deleted file mode 100644 index 8aaaabad7..000000000 --- a/test_fixtures/justify_content_overflow_min_max.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_row_center.html b/test_fixtures/justify_content_row_center.html deleted file mode 100644 index 721c281b7..000000000 --- a/test_fixtures/justify_content_row_center.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_row_flex_end.html b/test_fixtures/justify_content_row_flex_end.html deleted file mode 100644 index eb5d57ed9..000000000 --- a/test_fixtures/justify_content_row_flex_end.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_row_flex_start.html b/test_fixtures/justify_content_row_flex_start.html deleted file mode 100644 index d0a284ed3..000000000 --- a/test_fixtures/justify_content_row_flex_start.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_row_max_width_and_margin.html b/test_fixtures/justify_content_row_max_width_and_margin.html deleted file mode 100644 index 6ba381248..000000000 --- a/test_fixtures/justify_content_row_max_width_and_margin.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_row_min_width_and_margin.html b/test_fixtures/justify_content_row_min_width_and_margin.html deleted file mode 100644 index 8699d0cbd..000000000 --- a/test_fixtures/justify_content_row_min_width_and_margin.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_row_space_around.html b/test_fixtures/justify_content_row_space_around.html deleted file mode 100644 index af6f12e22..000000000 --- a/test_fixtures/justify_content_row_space_around.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_row_space_between.html b/test_fixtures/justify_content_row_space_between.html deleted file mode 100644 index 4276a7537..000000000 --- a/test_fixtures/justify_content_row_space_between.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/justify_content_row_space_evenly.html b/test_fixtures/justify_content_row_space_evenly.html deleted file mode 100644 index 5763c9218..000000000 --- a/test_fixtures/justify_content_row_space_evenly.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_overflow_scrollbars_affect_available_space_x_axis.html b/test_fixtures/leaf/leaf_overflow_scrollbars_affect_available_space_x_axis.html new file mode 100644 index 000000000..32cd5ad3c --- /dev/null +++ b/test_fixtures/leaf/leaf_overflow_scrollbars_affect_available_space_x_axis.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
H H H H H H H H H H H
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_overflow_scrollbars_affect_available_space_y_axis.html b/test_fixtures/leaf/leaf_overflow_scrollbars_affect_available_space_y_axis.html new file mode 100644 index 000000000..7e354beb2 --- /dev/null +++ b/test_fixtures/leaf/leaf_overflow_scrollbars_affect_available_space_y_axis.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
H H H H H H H H H H H
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_overflow_scrollbars_overriden_by_available_space.html b/test_fixtures/leaf/leaf_overflow_scrollbars_overriden_by_available_space.html new file mode 100644 index 000000000..e1eb6bb83 --- /dev/null +++ b/test_fixtures/leaf/leaf_overflow_scrollbars_overriden_by_available_space.html @@ -0,0 +1,17 @@ + + + + + + + Test description + + + + +
+
+
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_overflow_scrollbars_overriden_by_max_size.html b/test_fixtures/leaf/leaf_overflow_scrollbars_overriden_by_max_size.html new file mode 100644 index 000000000..27fa122a3 --- /dev/null +++ b/test_fixtures/leaf/leaf_overflow_scrollbars_overriden_by_max_size.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_overflow_scrollbars_overriden_by_size.html b/test_fixtures/leaf/leaf_overflow_scrollbars_overriden_by_size.html new file mode 100644 index 000000000..3c16487f1 --- /dev/null +++ b/test_fixtures/leaf/leaf_overflow_scrollbars_overriden_by_size.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_overflow_scrollbars_take_up_space_both_axis.html b/test_fixtures/leaf/leaf_overflow_scrollbars_take_up_space_both_axis.html new file mode 100644 index 000000000..85d5b7d16 --- /dev/null +++ b/test_fixtures/leaf/leaf_overflow_scrollbars_take_up_space_both_axis.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
HH
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_overflow_scrollbars_take_up_space_x_axis.html b/test_fixtures/leaf/leaf_overflow_scrollbars_take_up_space_x_axis.html new file mode 100644 index 000000000..4d8de465b --- /dev/null +++ b/test_fixtures/leaf/leaf_overflow_scrollbars_take_up_space_x_axis.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
HH
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_overflow_scrollbars_take_up_space_y_axis.html b/test_fixtures/leaf/leaf_overflow_scrollbars_take_up_space_y_axis.html new file mode 100644 index 000000000..03bed7b7c --- /dev/null +++ b/test_fixtures/leaf/leaf_overflow_scrollbars_take_up_space_y_axis.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
HH
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_padding_border_overrides_max_size.html b/test_fixtures/leaf/leaf_padding_border_overrides_max_size.html new file mode 100644 index 000000000..f8576eb6f --- /dev/null +++ b/test_fixtures/leaf/leaf_padding_border_overrides_max_size.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_padding_border_overrides_min_size.html b/test_fixtures/leaf/leaf_padding_border_overrides_min_size.html new file mode 100644 index 000000000..15ef14189 --- /dev/null +++ b/test_fixtures/leaf/leaf_padding_border_overrides_min_size.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_padding_border_overrides_size.html b/test_fixtures/leaf/leaf_padding_border_overrides_size.html new file mode 100644 index 000000000..0010a3ac0 --- /dev/null +++ b/test_fixtures/leaf/leaf_padding_border_overrides_size.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_with_content_and_border.html b/test_fixtures/leaf/leaf_with_content_and_border.html new file mode 100644 index 000000000..3a2362d7c --- /dev/null +++ b/test_fixtures/leaf/leaf_with_content_and_border.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
HHHH
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_with_content_and_padding.html b/test_fixtures/leaf/leaf_with_content_and_padding.html new file mode 100644 index 000000000..774c067f1 --- /dev/null +++ b/test_fixtures/leaf/leaf_with_content_and_padding.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
HHHH
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf/leaf_with_content_and_padding_border.html b/test_fixtures/leaf/leaf_with_content_and_padding_border.html new file mode 100644 index 000000000..7dd16514f --- /dev/null +++ b/test_fixtures/leaf/leaf_with_content_and_padding_border.html @@ -0,0 +1,15 @@ + + + + + + + Test description + + + + +
HHHH
+ + + \ No newline at end of file diff --git a/test_fixtures/leaf_overflow_scrollbars_affect_available_space_x_axis.html b/test_fixtures/leaf_overflow_scrollbars_affect_available_space_x_axis.html deleted file mode 100644 index 984c6ec24..000000000 --- a/test_fixtures/leaf_overflow_scrollbars_affect_available_space_x_axis.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
H H H H H H H H H H H
- - - \ No newline at end of file diff --git a/test_fixtures/leaf_overflow_scrollbars_affect_available_space_y_axis.html b/test_fixtures/leaf_overflow_scrollbars_affect_available_space_y_axis.html deleted file mode 100644 index f9e9b2fbf..000000000 --- a/test_fixtures/leaf_overflow_scrollbars_affect_available_space_y_axis.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
H H H H H H H H H H H
- - - \ No newline at end of file diff --git a/test_fixtures/leaf_overflow_scrollbars_overriden_by_available_space.html b/test_fixtures/leaf_overflow_scrollbars_overriden_by_available_space.html deleted file mode 100644 index 085d3ea76..000000000 --- a/test_fixtures/leaf_overflow_scrollbars_overriden_by_available_space.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/leaf_overflow_scrollbars_overriden_by_max_size.html b/test_fixtures/leaf_overflow_scrollbars_overriden_by_max_size.html deleted file mode 100644 index 37a8c47c8..000000000 --- a/test_fixtures/leaf_overflow_scrollbars_overriden_by_max_size.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
- - - \ No newline at end of file diff --git a/test_fixtures/leaf_overflow_scrollbars_overriden_by_size.html b/test_fixtures/leaf_overflow_scrollbars_overriden_by_size.html deleted file mode 100644 index d4e573d82..000000000 --- a/test_fixtures/leaf_overflow_scrollbars_overriden_by_size.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
- - - \ No newline at end of file diff --git a/test_fixtures/leaf_overflow_scrollbars_take_up_space_both_axis.html b/test_fixtures/leaf_overflow_scrollbars_take_up_space_both_axis.html deleted file mode 100644 index 753ca274d..000000000 --- a/test_fixtures/leaf_overflow_scrollbars_take_up_space_both_axis.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
HH
- - - \ No newline at end of file diff --git a/test_fixtures/leaf_overflow_scrollbars_take_up_space_x_axis.html b/test_fixtures/leaf_overflow_scrollbars_take_up_space_x_axis.html deleted file mode 100644 index bb0ea3ce2..000000000 --- a/test_fixtures/leaf_overflow_scrollbars_take_up_space_x_axis.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
HH
- - - \ No newline at end of file diff --git a/test_fixtures/leaf_overflow_scrollbars_take_up_space_y_axis.html b/test_fixtures/leaf_overflow_scrollbars_take_up_space_y_axis.html deleted file mode 100644 index 1af7085c2..000000000 --- a/test_fixtures/leaf_overflow_scrollbars_take_up_space_y_axis.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
HH
- - - \ No newline at end of file diff --git a/test_fixtures/leaf_padding_border_overrides_max_size.html b/test_fixtures/leaf_padding_border_overrides_max_size.html deleted file mode 100644 index 9c0e1a53d..000000000 --- a/test_fixtures/leaf_padding_border_overrides_max_size.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
- - - \ No newline at end of file diff --git a/test_fixtures/leaf_padding_border_overrides_min_size.html b/test_fixtures/leaf_padding_border_overrides_min_size.html deleted file mode 100644 index b40c39378..000000000 --- a/test_fixtures/leaf_padding_border_overrides_min_size.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
- - - \ No newline at end of file diff --git a/test_fixtures/leaf_padding_border_overrides_size.html b/test_fixtures/leaf_padding_border_overrides_size.html deleted file mode 100644 index abb8087fa..000000000 --- a/test_fixtures/leaf_padding_border_overrides_size.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
- - - \ No newline at end of file diff --git a/test_fixtures/leaf_with_content_and_border.html b/test_fixtures/leaf_with_content_and_border.html deleted file mode 100644 index e4dd38f42..000000000 --- a/test_fixtures/leaf_with_content_and_border.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
HHHH
- - - \ No newline at end of file diff --git a/test_fixtures/leaf_with_content_and_padding.html b/test_fixtures/leaf_with_content_and_padding.html deleted file mode 100644 index 29efd1cf2..000000000 --- a/test_fixtures/leaf_with_content_and_padding.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
HHHH
- - - \ No newline at end of file diff --git a/test_fixtures/leaf_with_content_and_padding_border.html b/test_fixtures/leaf_with_content_and_padding_border.html deleted file mode 100644 index 323568fe6..000000000 --- a/test_fixtures/leaf_with_content_and_padding_border.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
HHHH
- - - \ No newline at end of file diff --git a/test_fixtures/margin_and_flex_column.html b/test_fixtures/margin_and_flex_column.html deleted file mode 100644 index 272e59f4b..000000000 --- a/test_fixtures/margin_and_flex_column.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_and_flex_row.html b/test_fixtures/margin_and_flex_row.html deleted file mode 100644 index e17d00a26..000000000 --- a/test_fixtures/margin_and_flex_row.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_and_stretch_column.html b/test_fixtures/margin_and_stretch_column.html deleted file mode 100644 index 72a243983..000000000 --- a/test_fixtures/margin_and_stretch_column.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_and_stretch_row.html b/test_fixtures/margin_and_stretch_row.html deleted file mode 100644 index f6c6b2804..000000000 --- a/test_fixtures/margin_and_stretch_row.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_bottom.html b/test_fixtures/margin_auto_bottom.html deleted file mode 100644 index f44d69092..000000000 --- a/test_fixtures/margin_auto_bottom.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_bottom_and_top.html b/test_fixtures/margin_auto_bottom_and_top.html deleted file mode 100644 index ca7dc4f37..000000000 --- a/test_fixtures/margin_auto_bottom_and_top.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_bottom_and_top_justify_center.html b/test_fixtures/margin_auto_bottom_and_top_justify_center.html deleted file mode 100644 index 8fdd17d76..000000000 --- a/test_fixtures/margin_auto_bottom_and_top_justify_center.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_left.html b/test_fixtures/margin_auto_left.html deleted file mode 100644 index 6a59c0307..000000000 --- a/test_fixtures/margin_auto_left.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_left_and_right.html b/test_fixtures/margin_auto_left_and_right.html deleted file mode 100644 index fecac24ad..000000000 --- a/test_fixtures/margin_auto_left_and_right.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_left_and_right_column.html b/test_fixtures/margin_auto_left_and_right_column.html deleted file mode 100644 index 9b0c9b9c8..000000000 --- a/test_fixtures/margin_auto_left_and_right_column.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_left_and_right_column_and_center.html b/test_fixtures/margin_auto_left_and_right_column_and_center.html deleted file mode 100644 index cbf2a60dc..000000000 --- a/test_fixtures/margin_auto_left_and_right_column_and_center.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_left_and_right_stretch.html b/test_fixtures/margin_auto_left_and_right_stretch.html deleted file mode 100644 index a921e9f2d..000000000 --- a/test_fixtures/margin_auto_left_and_right_stretch.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_left_child_bigger_than_parent.html b/test_fixtures/margin_auto_left_child_bigger_than_parent.html deleted file mode 100644 index dd44b7654..000000000 --- a/test_fixtures/margin_auto_left_child_bigger_than_parent.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_left_fix_right_child_bigger_than_parent.html b/test_fixtures/margin_auto_left_fix_right_child_bigger_than_parent.html deleted file mode 100644 index 6a441dbe0..000000000 --- a/test_fixtures/margin_auto_left_fix_right_child_bigger_than_parent.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_left_right_child_bigger_than_parent.html b/test_fixtures/margin_auto_left_right_child_bigger_than_parent.html deleted file mode 100644 index ad9c74d46..000000000 --- a/test_fixtures/margin_auto_left_right_child_bigger_than_parent.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_left_stretching_child.html b/test_fixtures/margin_auto_left_stretching_child.html deleted file mode 100644 index 6cefff7dd..000000000 --- a/test_fixtures/margin_auto_left_stretching_child.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_mutiple_children_column.html b/test_fixtures/margin_auto_mutiple_children_column.html deleted file mode 100644 index 4bc118540..000000000 --- a/test_fixtures/margin_auto_mutiple_children_column.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_mutiple_children_row.html b/test_fixtures/margin_auto_mutiple_children_row.html deleted file mode 100644 index 16d1b311f..000000000 --- a/test_fixtures/margin_auto_mutiple_children_row.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_right.html b/test_fixtures/margin_auto_right.html deleted file mode 100644 index 4cd33ed8a..000000000 --- a/test_fixtures/margin_auto_right.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_top.html b/test_fixtures/margin_auto_top.html deleted file mode 100644 index 89a3ab0b1..000000000 --- a/test_fixtures/margin_auto_top.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_top_and_bottom_stretch.html b/test_fixtures/margin_auto_top_and_bottom_stretch.html deleted file mode 100644 index b04f2c62d..000000000 --- a/test_fixtures/margin_auto_top_and_bottom_stretch.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_auto_top_stretching_child.html b/test_fixtures/margin_auto_top_stretching_child.html deleted file mode 100644 index d2186bf7e..000000000 --- a/test_fixtures/margin_auto_top_stretching_child.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_bottom.html b/test_fixtures/margin_bottom.html deleted file mode 100644 index 66ca8dd8f..000000000 --- a/test_fixtures/margin_bottom.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_fix_left_auto_right_child_bigger_than_parent.html b/test_fixtures/margin_fix_left_auto_right_child_bigger_than_parent.html deleted file mode 100644 index 45b903bfb..000000000 --- a/test_fixtures/margin_fix_left_auto_right_child_bigger_than_parent.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_left.html b/test_fixtures/margin_left.html deleted file mode 100644 index 0569a649b..000000000 --- a/test_fixtures/margin_left.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_right.html b/test_fixtures/margin_right.html deleted file mode 100644 index c67b532b0..000000000 --- a/test_fixtures/margin_right.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_should_not_be_part_of_max_height.html b/test_fixtures/margin_should_not_be_part_of_max_height.html deleted file mode 100644 index 2a6a5807d..000000000 --- a/test_fixtures/margin_should_not_be_part_of_max_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_should_not_be_part_of_max_width.html b/test_fixtures/margin_should_not_be_part_of_max_width.html deleted file mode 100644 index 0deffbfd9..000000000 --- a/test_fixtures/margin_should_not_be_part_of_max_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_top.html b/test_fixtures/margin_top.html deleted file mode 100644 index 20af0258d..000000000 --- a/test_fixtures/margin_top.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_with_sibling_column.html b/test_fixtures/margin_with_sibling_column.html deleted file mode 100644 index 9241be5c6..000000000 --- a/test_fixtures/margin_with_sibling_column.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/margin_with_sibling_row.html b/test_fixtures/margin_with_sibling_row.html deleted file mode 100644 index 498e8734f..000000000 --- a/test_fixtures/margin_with_sibling_row.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/max_height.html b/test_fixtures/max_height.html deleted file mode 100644 index 21245d508..000000000 --- a/test_fixtures/max_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/max_height_overrides_height.html b/test_fixtures/max_height_overrides_height.html deleted file mode 100644 index 27db54c20..000000000 --- a/test_fixtures/max_height_overrides_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/max_height_overrides_height_on_root.html b/test_fixtures/max_height_overrides_height_on_root.html deleted file mode 100644 index 20ab273af..000000000 --- a/test_fixtures/max_height_overrides_height_on_root.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
- - - \ No newline at end of file diff --git a/test_fixtures/max_width.html b/test_fixtures/max_width.html deleted file mode 100644 index 4252e2fc2..000000000 --- a/test_fixtures/max_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/max_width_overrides_width.html b/test_fixtures/max_width_overrides_width.html deleted file mode 100644 index 1d275d753..000000000 --- a/test_fixtures/max_width_overrides_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/max_width_overrides_width_on_root.html b/test_fixtures/max_width_overrides_width_on_root.html deleted file mode 100644 index 4cb28afbb..000000000 --- a/test_fixtures/max_width_overrides_width_on_root.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - Test description - - - - -
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_child.html b/test_fixtures/measure_child.html deleted file mode 100644 index 73ab7a536..000000000 --- a/test_fixtures/measure_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_child_absolute.html b/test_fixtures/measure_child_absolute.html deleted file mode 100644 index ce06296a4..000000000 --- a/test_fixtures/measure_child_absolute.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_child_constraint.html b/test_fixtures/measure_child_constraint.html deleted file mode 100644 index c9d6541c0..000000000 --- a/test_fixtures/measure_child_constraint.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_child_constraint_padding_parent.html b/test_fixtures/measure_child_constraint_padding_parent.html deleted file mode 100644 index 557c4ef0f..000000000 --- a/test_fixtures/measure_child_constraint_padding_parent.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_child_with_flex_grow.html b/test_fixtures/measure_child_with_flex_grow.html deleted file mode 100644 index f49a7e54d..000000000 --- a/test_fixtures/measure_child_with_flex_grow.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
H​H​H​H​H
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_child_with_flex_shrink.html b/test_fixtures/measure_child_with_flex_shrink.html deleted file mode 100644 index 54e283d46..000000000 --- a/test_fixtures/measure_child_with_flex_shrink.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_child_with_flex_shrink_hidden.html b/test_fixtures/measure_child_with_flex_shrink_hidden.html deleted file mode 100644 index 00f68c89e..000000000 --- a/test_fixtures/measure_child_with_flex_shrink_hidden.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH​HHHHHHHHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_child_with_min_size_greater_than_available_space.html b/test_fixtures/measure_child_with_min_size_greater_than_available_space.html deleted file mode 100644 index de00d5ade..000000000 --- a/test_fixtures/measure_child_with_min_size_greater_than_available_space.html +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHHHH​HHHHHHHH
-
diff --git a/test_fixtures/measure_flex_basis_overrides_measure.html b/test_fixtures/measure_flex_basis_overrides_measure.html deleted file mode 100644 index 6255068aa..000000000 --- a/test_fixtures/measure_flex_basis_overrides_measure.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
H
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_height_overrides_measure.html b/test_fixtures/measure_height_overrides_measure.html deleted file mode 100644 index 1370d8d95..000000000 --- a/test_fixtures/measure_height_overrides_measure.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
H
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_remeasure_child_after_growing.html b/test_fixtures/measure_remeasure_child_after_growing.html deleted file mode 100644 index dc9797353..000000000 --- a/test_fixtures/measure_remeasure_child_after_growing.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_remeasure_child_after_shrinking.html b/test_fixtures/measure_remeasure_child_after_shrinking.html deleted file mode 100644 index d468566b1..000000000 --- a/test_fixtures/measure_remeasure_child_after_shrinking.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_remeasure_child_after_stretching.html b/test_fixtures/measure_remeasure_child_after_stretching.html deleted file mode 100644 index 1d01082f9..000000000 --- a/test_fixtures/measure_remeasure_child_after_stretching.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HH
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_root.html b/test_fixtures/measure_root.html deleted file mode 100644 index 2092056bc..000000000 --- a/test_fixtures/measure_root.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
HHHHHH
- - - \ No newline at end of file diff --git a/test_fixtures/measure_stretch_overrides_measure.html b/test_fixtures/measure_stretch_overrides_measure.html deleted file mode 100644 index ed4f9d234..000000000 --- a/test_fixtures/measure_stretch_overrides_measure.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
H
-
- - - \ No newline at end of file diff --git a/test_fixtures/measure_width_overrides_measure.html b/test_fixtures/measure_width_overrides_measure.html deleted file mode 100644 index 3adcbbb86..000000000 --- a/test_fixtures/measure_width_overrides_measure.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHHHHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/min_height.html b/test_fixtures/min_height.html deleted file mode 100644 index 4592db087..000000000 --- a/test_fixtures/min_height.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/min_height_larger_than_height.html b/test_fixtures/min_height_larger_than_height.html deleted file mode 100644 index b04d56492..000000000 --- a/test_fixtures/min_height_larger_than_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/min_height_overrides_height.html b/test_fixtures/min_height_overrides_height.html deleted file mode 100644 index 9bf64a6b4..000000000 --- a/test_fixtures/min_height_overrides_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/min_height_overrides_height_on_root.html b/test_fixtures/min_height_overrides_height_on_root.html deleted file mode 100644 index 8c0787bd4..000000000 --- a/test_fixtures/min_height_overrides_height_on_root.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - Test description - - - - -
-
- - - \ No newline at end of file diff --git a/test_fixtures/min_height_overrides_max_height.html b/test_fixtures/min_height_overrides_max_height.html deleted file mode 100644 index d7579400b..000000000 --- a/test_fixtures/min_height_overrides_max_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/min_height_with_nested_fixed_height.html b/test_fixtures/min_height_with_nested_fixed_height.html deleted file mode 100644 index bbb6c3ee5..000000000 --- a/test_fixtures/min_height_with_nested_fixed_height.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/min_max_percent_different_width_height.html b/test_fixtures/min_max_percent_different_width_height.html deleted file mode 100644 index 1248a219f..000000000 --- a/test_fixtures/min_max_percent_different_width_height.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/min_max_percent_no_width_height.html b/test_fixtures/min_max_percent_no_width_height.html deleted file mode 100644 index f5d89393c..000000000 --- a/test_fixtures/min_max_percent_no_width_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/min_width.html b/test_fixtures/min_width.html deleted file mode 100644 index 423b9342f..000000000 --- a/test_fixtures/min_width.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/min_width_larger_than_width.html b/test_fixtures/min_width_larger_than_width.html deleted file mode 100644 index eda95737b..000000000 --- a/test_fixtures/min_width_larger_than_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/min_width_overrides_max_width.html b/test_fixtures/min_width_overrides_max_width.html deleted file mode 100644 index bf6ac6b86..000000000 --- a/test_fixtures/min_width_overrides_max_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/min_width_overrides_width.html b/test_fixtures/min_width_overrides_width.html deleted file mode 100644 index 43e93b70e..000000000 --- a/test_fixtures/min_width_overrides_width.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/min_width_overrides_width_on_root.html b/test_fixtures/min_width_overrides_width_on_root.html deleted file mode 100644 index d062452c0..000000000 --- a/test_fixtures/min_width_overrides_width_on_root.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - Test description - - - - -
-
- - - \ No newline at end of file diff --git a/test_fixtures/nested_overflowing_child.html b/test_fixtures/nested_overflowing_child.html deleted file mode 100644 index 792ec7750..000000000 --- a/test_fixtures/nested_overflowing_child.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/nested_overflowing_child_in_constraint_parent.html b/test_fixtures/nested_overflowing_child_in_constraint_parent.html deleted file mode 100644 index 190ca17bc..000000000 --- a/test_fixtures/nested_overflowing_child_in_constraint_parent.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/only_shrinkable_item_with_flex_basis_zero.html b/test_fixtures/only_shrinkable_item_with_flex_basis_zero.html deleted file mode 100644 index edb6c3e87..000000000 --- a/test_fixtures/only_shrinkable_item_with_flex_basis_zero.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/overflow_cross_axis.html b/test_fixtures/overflow_cross_axis.html deleted file mode 100644 index 74f454777..000000000 --- a/test_fixtures/overflow_cross_axis.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/overflow_main_axis.html b/test_fixtures/overflow_main_axis.html deleted file mode 100644 index 7813e7f21..000000000 --- a/test_fixtures/overflow_main_axis.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/overflow_main_axis_shrink_hidden.html b/test_fixtures/overflow_main_axis_shrink_hidden.html deleted file mode 100644 index 00b19c462..000000000 --- a/test_fixtures/overflow_main_axis_shrink_hidden.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHHHHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/overflow_main_axis_shrink_scroll.html b/test_fixtures/overflow_main_axis_shrink_scroll.html deleted file mode 100644 index 8feff1fd0..000000000 --- a/test_fixtures/overflow_main_axis_shrink_scroll.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHHHHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/overflow_main_axis_shrink_visible.html b/test_fixtures/overflow_main_axis_shrink_visible.html deleted file mode 100644 index adf33f652..000000000 --- a/test_fixtures/overflow_main_axis_shrink_visible.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHHHHHHHH
-
- - - \ No newline at end of file diff --git a/test_fixtures/overflow_scroll_main_axis_justify_content_end.html b/test_fixtures/overflow_scroll_main_axis_justify_content_end.html deleted file mode 100644 index 18ee0e58d..000000000 --- a/test_fixtures/overflow_scroll_main_axis_justify_content_end.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/overflow_scrollbars_overriden_by_available_space.html b/test_fixtures/overflow_scrollbars_overriden_by_available_space.html deleted file mode 100644 index bdd3ad6fe..000000000 --- a/test_fixtures/overflow_scrollbars_overriden_by_available_space.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/overflow_scrollbars_overriden_by_max_size.html b/test_fixtures/overflow_scrollbars_overriden_by_max_size.html deleted file mode 100644 index 597f7250a..000000000 --- a/test_fixtures/overflow_scrollbars_overriden_by_max_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/overflow_scrollbars_overriden_by_size.html b/test_fixtures/overflow_scrollbars_overriden_by_size.html deleted file mode 100644 index 1252ea2d6..000000000 --- a/test_fixtures/overflow_scrollbars_overriden_by_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/overflow_scrollbars_take_up_space_both_axis.html b/test_fixtures/overflow_scrollbars_take_up_space_both_axis.html deleted file mode 100644 index 1bd29bfd4..000000000 --- a/test_fixtures/overflow_scrollbars_take_up_space_both_axis.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/overflow_scrollbars_take_up_space_cross_axis.html b/test_fixtures/overflow_scrollbars_take_up_space_cross_axis.html deleted file mode 100644 index c3dd215b0..000000000 --- a/test_fixtures/overflow_scrollbars_take_up_space_cross_axis.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/overflow_scrollbars_take_up_space_main_axis.html b/test_fixtures/overflow_scrollbars_take_up_space_main_axis.html deleted file mode 100644 index 6394f9e55..000000000 --- a/test_fixtures/overflow_scrollbars_take_up_space_main_axis.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/padding_align_end_child.html b/test_fixtures/padding_align_end_child.html deleted file mode 100644 index 5183371da..000000000 --- a/test_fixtures/padding_align_end_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/padding_border_overrides_max_size.html b/test_fixtures/padding_border_overrides_max_size.html deleted file mode 100644 index 43f28be9d..000000000 --- a/test_fixtures/padding_border_overrides_max_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/padding_border_overrides_min_size.html b/test_fixtures/padding_border_overrides_min_size.html deleted file mode 100644 index aac41ee1f..000000000 --- a/test_fixtures/padding_border_overrides_min_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/padding_border_overrides_size.html b/test_fixtures/padding_border_overrides_size.html deleted file mode 100644 index 073c7f80c..000000000 --- a/test_fixtures/padding_border_overrides_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/padding_border_overrides_size_flex_basis_0.html b/test_fixtures/padding_border_overrides_size_flex_basis_0.html deleted file mode 100644 index e09be6ec8..000000000 --- a/test_fixtures/padding_border_overrides_size_flex_basis_0.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/padding_border_overrides_size_flex_basis_0_growable.html b/test_fixtures/padding_border_overrides_size_flex_basis_0_growable.html deleted file mode 100644 index 5ebeb3448..000000000 --- a/test_fixtures/padding_border_overrides_size_flex_basis_0_growable.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/padding_center_child.html b/test_fixtures/padding_center_child.html deleted file mode 100644 index 4d6693f4c..000000000 --- a/test_fixtures/padding_center_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/padding_container_match_child.html b/test_fixtures/padding_container_match_child.html deleted file mode 100644 index f533cc3e6..000000000 --- a/test_fixtures/padding_container_match_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/padding_flex_child.html b/test_fixtures/padding_flex_child.html deleted file mode 100644 index 939b30ef7..000000000 --- a/test_fixtures/padding_flex_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/padding_no_child.html b/test_fixtures/padding_no_child.html deleted file mode 100644 index a848a5d2a..000000000 --- a/test_fixtures/padding_no_child.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - Test description - - - - -
-
- - - \ No newline at end of file diff --git a/test_fixtures/padding_no_size.html b/test_fixtures/padding_no_size.html deleted file mode 100644 index 4cf4e864e..000000000 --- a/test_fixtures/padding_no_size.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - Test description - - - - -
- - - \ No newline at end of file diff --git a/test_fixtures/padding_stretch_child.html b/test_fixtures/padding_stretch_child.html deleted file mode 100644 index ed3d30391..000000000 --- a/test_fixtures/padding_stretch_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/parent_wrap_child_size_overflowing_parent.html b/test_fixtures/parent_wrap_child_size_overflowing_parent.html deleted file mode 100644 index b22840c40..000000000 --- a/test_fixtures/parent_wrap_child_size_overflowing_parent.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percent_absolute_position.html b/test_fixtures/percent_absolute_position.html deleted file mode 100644 index b8082e432..000000000 --- a/test_fixtures/percent_absolute_position.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percent_within_flex_grow.html b/test_fixtures/percent_within_flex_grow.html deleted file mode 100644 index e3bfabb1c..000000000 --- a/test_fixtures/percent_within_flex_grow.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_absolute_position.html b/test_fixtures/percentage_absolute_position.html deleted file mode 100644 index 122505cbe..000000000 --- a/test_fixtures/percentage_absolute_position.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_different_width_height.html b/test_fixtures/percentage_different_width_height.html deleted file mode 100644 index 533982e95..000000000 --- a/test_fixtures/percentage_different_width_height.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_different_width_height_column.html b/test_fixtures/percentage_different_width_height_column.html deleted file mode 100644 index 6fd363e85..000000000 --- a/test_fixtures/percentage_different_width_height_column.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_flex_basis.html b/test_fixtures/percentage_flex_basis.html deleted file mode 100644 index e4a5434dc..000000000 --- a/test_fixtures/percentage_flex_basis.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_flex_basis_cross.html b/test_fixtures/percentage_flex_basis_cross.html deleted file mode 100644 index 47e853ba6..000000000 --- a/test_fixtures/percentage_flex_basis_cross.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_flex_basis_cross_max_height.html b/test_fixtures/percentage_flex_basis_cross_max_height.html deleted file mode 100644 index c0b5422f9..000000000 --- a/test_fixtures/percentage_flex_basis_cross_max_height.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_flex_basis_cross_max_width.html b/test_fixtures/percentage_flex_basis_cross_max_width.html deleted file mode 100644 index cfba2c1a2..000000000 --- a/test_fixtures/percentage_flex_basis_cross_max_width.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_flex_basis_cross_min_height.html b/test_fixtures/percentage_flex_basis_cross_min_height.html deleted file mode 100644 index af241a379..000000000 --- a/test_fixtures/percentage_flex_basis_cross_min_height.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_flex_basis_cross_min_width.html b/test_fixtures/percentage_flex_basis_cross_min_width.html deleted file mode 100644 index 45ae2a4cd..000000000 --- a/test_fixtures/percentage_flex_basis_cross_min_width.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_flex_basis_main_max_height.html b/test_fixtures/percentage_flex_basis_main_max_height.html deleted file mode 100644 index 95de4153f..000000000 --- a/test_fixtures/percentage_flex_basis_main_max_height.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_flex_basis_main_max_width.html b/test_fixtures/percentage_flex_basis_main_max_width.html deleted file mode 100644 index 8dedde457..000000000 --- a/test_fixtures/percentage_flex_basis_main_max_width.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_flex_basis_main_min_width.html b/test_fixtures/percentage_flex_basis_main_min_width.html deleted file mode 100644 index 9c90c91ae..000000000 --- a/test_fixtures/percentage_flex_basis_main_min_width.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_main_max_height.html b/test_fixtures/percentage_main_max_height.html deleted file mode 100644 index 8259574d8..000000000 --- a/test_fixtures/percentage_main_max_height.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_margin_should_calculate_based_only_on_width.html b/test_fixtures/percentage_margin_should_calculate_based_only_on_width.html deleted file mode 100644 index 4341ac8bf..000000000 --- a/test_fixtures/percentage_margin_should_calculate_based_only_on_width.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_moderate_complexity.html b/test_fixtures/percentage_moderate_complexity.html deleted file mode 100644 index 528fa5824..000000000 --- a/test_fixtures/percentage_moderate_complexity.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_moderate_complexity2.html b/test_fixtures/percentage_moderate_complexity2.html deleted file mode 100644 index a06c2990a..000000000 --- a/test_fixtures/percentage_moderate_complexity2.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_padding_should_calculate_based_only_on_width.html b/test_fixtures/percentage_padding_should_calculate_based_only_on_width.html deleted file mode 100644 index a7d192ffa..000000000 --- a/test_fixtures/percentage_padding_should_calculate_based_only_on_width.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_position_bottom_right.html b/test_fixtures/percentage_position_bottom_right.html deleted file mode 100644 index 2ad954e2c..000000000 --- a/test_fixtures/percentage_position_bottom_right.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_position_left_top.html b/test_fixtures/percentage_position_left_top.html deleted file mode 100644 index b2fca748d..000000000 --- a/test_fixtures/percentage_position_left_top.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_size_based_on_parent_inner_size.html b/test_fixtures/percentage_size_based_on_parent_inner_size.html deleted file mode 100644 index 8b4bb6a33..000000000 --- a/test_fixtures/percentage_size_based_on_parent_inner_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_size_of_flex_basis.html b/test_fixtures/percentage_size_of_flex_basis.html deleted file mode 100644 index 6bdada533..000000000 --- a/test_fixtures/percentage_size_of_flex_basis.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_sizes_should_not_prevent_flex_shrinking.html b/test_fixtures/percentage_sizes_should_not_prevent_flex_shrinking.html deleted file mode 100644 index 47abb9261..000000000 --- a/test_fixtures/percentage_sizes_should_not_prevent_flex_shrinking.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Bevy #8017 - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_width_height.html b/test_fixtures/percentage_width_height.html deleted file mode 100644 index eb0d76db8..000000000 --- a/test_fixtures/percentage_width_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/percentage_width_height_undefined_parent_size.html b/test_fixtures/percentage_width_height_undefined_parent_size.html deleted file mode 100644 index 13dcc1b09..000000000 --- a/test_fixtures/percentage_width_height_undefined_parent_size.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/position_root_with_rtl_should_position_withoutdirection.html b/test_fixtures/position_root_with_rtl_should_position_withoutdirection.html deleted file mode 100644 index 38001d267..000000000 --- a/test_fixtures/position_root_with_rtl_should_position_withoutdirection.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/relative_position_should_not_nudge_siblings.html b/test_fixtures/relative_position_should_not_nudge_siblings.html deleted file mode 100644 index ba08b5d76..000000000 --- a/test_fixtures/relative_position_should_not_nudge_siblings.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/rounding_flex_basis_flex_grow_row_prime_number_width.html b/test_fixtures/rounding_flex_basis_flex_grow_row_prime_number_width.html deleted file mode 100644 index 4223e2a12..000000000 --- a/test_fixtures/rounding_flex_basis_flex_grow_row_prime_number_width.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/rounding_flex_basis_flex_grow_row_width_of_100.html b/test_fixtures/rounding_flex_basis_flex_grow_row_width_of_100.html deleted file mode 100644 index 914d19cbd..000000000 --- a/test_fixtures/rounding_flex_basis_flex_grow_row_width_of_100.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/rounding_flex_basis_flex_shrink_row.html b/test_fixtures/rounding_flex_basis_flex_shrink_row.html deleted file mode 100644 index 5c71d4e90..000000000 --- a/test_fixtures/rounding_flex_basis_flex_shrink_row.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/rounding_flex_basis_overrides_main_size.html b/test_fixtures/rounding_flex_basis_overrides_main_size.html deleted file mode 100644 index 781f11afd..000000000 --- a/test_fixtures/rounding_flex_basis_overrides_main_size.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/rounding_fractial_input_1.html b/test_fixtures/rounding_fractial_input_1.html deleted file mode 100644 index 8fef41aae..000000000 --- a/test_fixtures/rounding_fractial_input_1.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/rounding_fractial_input_2.html b/test_fixtures/rounding_fractial_input_2.html deleted file mode 100644 index 1438d9125..000000000 --- a/test_fixtures/rounding_fractial_input_2.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/rounding_fractial_input_3.html b/test_fixtures/rounding_fractial_input_3.html deleted file mode 100644 index 8fef41aae..000000000 --- a/test_fixtures/rounding_fractial_input_3.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/rounding_fractial_input_4.html b/test_fixtures/rounding_fractial_input_4.html deleted file mode 100644 index 8fef41aae..000000000 --- a/test_fixtures/rounding_fractial_input_4.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/rounding_fractial_input_5.html b/test_fixtures/rounding_fractial_input_5.html deleted file mode 100644 index 7b8616255..000000000 --- a/test_fixtures/rounding_fractial_input_5.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/rounding_inner_node_controversy_horizontal.html b/test_fixtures/rounding_inner_node_controversy_horizontal.html deleted file mode 100644 index c22591b31..000000000 --- a/test_fixtures/rounding_inner_node_controversy_horizontal.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/rounding_inner_node_controversy_vertical.html b/test_fixtures/rounding_inner_node_controversy_vertical.html deleted file mode 100644 index 0b1f7af48..000000000 --- a/test_fixtures/rounding_inner_node_controversy_vertical.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/rounding_total_fractial.html b/test_fixtures/rounding_total_fractial.html deleted file mode 100644 index a7f513cb6..000000000 --- a/test_fixtures/rounding_total_fractial.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/single_flex_child_after_absolute_child.html b/test_fixtures/single_flex_child_after_absolute_child.html deleted file mode 100644 index b5a78279c..000000000 --- a/test_fixtures/single_flex_child_after_absolute_child.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/size_defined_by_child.html b/test_fixtures/size_defined_by_child.html deleted file mode 100644 index f04fed88d..000000000 --- a/test_fixtures/size_defined_by_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/size_defined_by_child_with_border.html b/test_fixtures/size_defined_by_child_with_border.html deleted file mode 100644 index 0119819cf..000000000 --- a/test_fixtures/size_defined_by_child_with_border.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/size_defined_by_child_with_padding.html b/test_fixtures/size_defined_by_child_with_padding.html deleted file mode 100644 index 70a61124a..000000000 --- a/test_fixtures/size_defined_by_child_with_padding.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/size_defined_by_grand_child.html b/test_fixtures/size_defined_by_grand_child.html deleted file mode 100644 index 6cb7408cb..000000000 --- a/test_fixtures/size_defined_by_grand_child.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/undefined_height_with_min_max.html b/test_fixtures/undefined_height_with_min_max.html deleted file mode 100644 index ebcbd270f..000000000 --- a/test_fixtures/undefined_height_with_min_max.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/undefined_width_with_min_max.html b/test_fixtures/undefined_width_with_min_max.html deleted file mode 100644 index 40eee5953..000000000 --- a/test_fixtures/undefined_width_with_min_max.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/undefined_width_with_min_max_row.html b/test_fixtures/undefined_width_with_min_max_row.html deleted file mode 100644 index 409b38402..000000000 --- a/test_fixtures/undefined_width_with_min_max_row.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/width_smaller_then_content_with_flex_grow_large_size.html b/test_fixtures/width_smaller_then_content_with_flex_grow_large_size.html deleted file mode 100644 index f17258845..000000000 --- a/test_fixtures/width_smaller_then_content_with_flex_grow_large_size.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/width_smaller_then_content_with_flex_grow_small_size.html b/test_fixtures/width_smaller_then_content_with_flex_grow_small_size.html deleted file mode 100644 index 868af74cd..000000000 --- a/test_fixtures/width_smaller_then_content_with_flex_grow_small_size.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/width_smaller_then_content_with_flex_grow_unconstraint_size.html b/test_fixtures/width_smaller_then_content_with_flex_grow_unconstraint_size.html deleted file mode 100644 index 3087ac774..000000000 --- a/test_fixtures/width_smaller_then_content_with_flex_grow_unconstraint_size.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/width_smaller_then_content_with_flex_grow_very_large_size.html b/test_fixtures/width_smaller_then_content_with_flex_grow_very_large_size.html deleted file mode 100644 index 9461848bc..000000000 --- a/test_fixtures/width_smaller_then_content_with_flex_grow_very_large_size.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/wrap_child.html b/test_fixtures/wrap_child.html deleted file mode 100644 index 6fef42162..000000000 --- a/test_fixtures/wrap_child.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/wrap_column.html b/test_fixtures/wrap_column.html deleted file mode 100644 index 187241ca8..000000000 --- a/test_fixtures/wrap_column.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/wrap_grandchild.html b/test_fixtures/wrap_grandchild.html deleted file mode 100644 index 6cb7408cb..000000000 --- a/test_fixtures/wrap_grandchild.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/wrap_reverse_column.html b/test_fixtures/wrap_reverse_column.html deleted file mode 100644 index 686aecc5c..000000000 --- a/test_fixtures/wrap_reverse_column.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/wrap_reverse_row.html b/test_fixtures/wrap_reverse_row.html deleted file mode 100644 index 2e7dee8b8..000000000 --- a/test_fixtures/wrap_reverse_row.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/wrap_row.html b/test_fixtures/wrap_row.html deleted file mode 100644 index 72398b7e8..000000000 --- a/test_fixtures/wrap_row.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/wrap_row_align_items_center.html b/test_fixtures/wrap_row_align_items_center.html deleted file mode 100644 index 07d6d05e0..000000000 --- a/test_fixtures/wrap_row_align_items_center.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/wrap_row_align_items_flex_end.html b/test_fixtures/wrap_row_align_items_flex_end.html deleted file mode 100644 index 4edccc61e..000000000 --- a/test_fixtures/wrap_row_align_items_flex_end.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/wrapped_row_within_align_items_center.html b/test_fixtures/wrapped_row_within_align_items_center.html deleted file mode 100644 index b97baa0a0..000000000 --- a/test_fixtures/wrapped_row_within_align_items_center.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/wrapped_row_within_align_items_flex_end.html b/test_fixtures/wrapped_row_within_align_items_flex_end.html deleted file mode 100644 index c78b1da20..000000000 --- a/test_fixtures/wrapped_row_within_align_items_flex_end.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/wrapped_row_within_align_items_flex_start.html b/test_fixtures/wrapped_row_within_align_items_flex_start.html deleted file mode 100644 index 8f096500c..000000000 --- a/test_fixtures/wrapped_row_within_align_items_flex_start.html +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/xaspect_ratio_flex_column_stretch_fill_min_height.html b/test_fixtures/xaspect_ratio_flex_column_stretch_fill_min_height.html deleted file mode 100644 index 49afe1c04..000000000 --- a/test_fixtures/xaspect_ratio_flex_column_stretch_fill_min_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/xaspect_ratio_flex_column_stretch_fill_min_width.html b/test_fixtures/xaspect_ratio_flex_column_stretch_fill_min_width.html deleted file mode 100644 index dd2c66d2b..000000000 --- a/test_fixtures/xaspect_ratio_flex_column_stretch_fill_min_width.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
- -
-
- - - \ No newline at end of file diff --git a/test_fixtures/xaspect_ratio_flex_row_stretch_fill_min_height.html b/test_fixtures/xaspect_ratio_flex_row_stretch_fill_min_height.html deleted file mode 100644 index c1f7df18b..000000000 --- a/test_fixtures/xaspect_ratio_flex_row_stretch_fill_min_height.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/xaspect_ratio_flex_row_stretch_fill_min_width.html b/test_fixtures/xaspect_ratio_flex_row_stretch_fill_min_width.html deleted file mode 100644 index 89e71e9da..000000000 --- a/test_fixtures/xaspect_ratio_flex_row_stretch_fill_min_width.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
- -
-
- - - \ No newline at end of file diff --git a/test_fixtures/xflex_basis_zero_undefined_main_size_hidden.html b/test_fixtures/xflex_basis_zero_undefined_main_size_hidden.html deleted file mode 100644 index 23d9bb149..000000000 --- a/test_fixtures/xflex_basis_zero_undefined_main_size_hidden.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/xgrid_fr_span_2_proportion_sub_1_sum_with_non_spanned_track.html b/test_fixtures/xgrid_fr_span_2_proportion_sub_1_sum_with_non_spanned_track.html deleted file mode 100644 index 9a668fbcd..000000000 --- a/test_fixtures/xgrid_fr_span_2_proportion_sub_1_sum_with_non_spanned_track.html +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/xgrid_span_2_max_content_minmax_max_content_min_content_indefinite.html b/test_fixtures/xgrid_span_2_max_content_minmax_max_content_min_content_indefinite.html deleted file mode 100644 index 8c5ab482f..000000000 --- a/test_fixtures/xgrid_span_2_max_content_minmax_max_content_min_content_indefinite.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - - - Test description - - - - -
-
HHHH​HHHH
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/xmargin_auto_start_and_end.html b/test_fixtures/xmargin_auto_start_and_end.html deleted file mode 100644 index 5f9a1dbf0..000000000 --- a/test_fixtures/xmargin_auto_start_and_end.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/xmargin_auto_start_and_end_column.html b/test_fixtures/xmargin_auto_start_and_end_column.html deleted file mode 100644 index a7f8f485e..000000000 --- a/test_fixtures/xmargin_auto_start_and_end_column.html +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - Test description - - - - -
-
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/xmargin_end.html b/test_fixtures/xmargin_end.html deleted file mode 100644 index cabdce03a..000000000 --- a/test_fixtures/xmargin_end.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/test_fixtures/xmargin_start.html b/test_fixtures/xmargin_start.html deleted file mode 100644 index 763d08e35..000000000 --- a/test_fixtures/xmargin_start.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - Test description - - - - -
-
-
- - - \ No newline at end of file diff --git a/tests/generated/block_absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.rs b/tests/generated/block/block_absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.rs similarity index 100% rename from tests/generated/block_absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.rs rename to tests/generated/block/block_absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.rs diff --git a/tests/generated/block_absolute_aspect_ratio_fill_height.rs b/tests/generated/block/block_absolute_aspect_ratio_fill_height.rs similarity index 100% rename from tests/generated/block_absolute_aspect_ratio_fill_height.rs rename to tests/generated/block/block_absolute_aspect_ratio_fill_height.rs diff --git a/tests/generated/block_absolute_aspect_ratio_fill_height_from_inset.rs b/tests/generated/block/block_absolute_aspect_ratio_fill_height_from_inset.rs similarity index 100% rename from tests/generated/block_absolute_aspect_ratio_fill_height_from_inset.rs rename to tests/generated/block/block_absolute_aspect_ratio_fill_height_from_inset.rs diff --git a/tests/generated/block_absolute_aspect_ratio_fill_max_height.rs b/tests/generated/block/block_absolute_aspect_ratio_fill_max_height.rs similarity index 90% rename from tests/generated/block_absolute_aspect_ratio_fill_max_height.rs rename to tests/generated/block/block_absolute_aspect_ratio_fill_max_height.rs index bdfd2a502..22f4bdd52 100644 --- a/tests/generated/block_absolute_aspect_ratio_fill_max_height.rs +++ b/tests/generated/block/block_absolute_aspect_ratio_fill_max_height.rs @@ -3,7 +3,7 @@ fn block_absolute_aspect_ratio_fill_max_height() { #[allow(unused_imports)] use taffy::{prelude::*, tree::Layout}; let mut taffy = taffy::Taffy::new(); - let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { position : taffy :: style :: Position :: Absolute , max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (50f32) , height : auto () , } , aspect_ratio : Some (3f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH" ; super :: measure_standard_text (known_dimensions , available_space , TEXT , super :: WritingMode :: Horizontal , Some (3f32)) }) ,) . unwrap () ; + let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { position : taffy :: style :: Position :: Absolute , max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (50f32) , height : auto () , } , aspect_ratio : Some (3f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH" ; crate :: generated :: measure_standard_text (known_dimensions , available_space , TEXT , crate :: generated :: WritingMode :: Horizontal , Some (3f32)) }) ,) . unwrap () ; let node = taffy .new_with_children( taffy::style::Style { diff --git a/tests/generated/block_absolute_aspect_ratio_fill_max_width.rs b/tests/generated/block/block_absolute_aspect_ratio_fill_max_width.rs similarity index 90% rename from tests/generated/block_absolute_aspect_ratio_fill_max_width.rs rename to tests/generated/block/block_absolute_aspect_ratio_fill_max_width.rs index e616b4c18..ebbc890c9 100644 --- a/tests/generated/block_absolute_aspect_ratio_fill_max_width.rs +++ b/tests/generated/block/block_absolute_aspect_ratio_fill_max_width.rs @@ -3,7 +3,7 @@ fn block_absolute_aspect_ratio_fill_max_width() { #[allow(unused_imports)] use taffy::{prelude::*, tree::Layout}; let mut taffy = taffy::Taffy::new(); - let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { position : taffy :: style :: Position :: Absolute , max_size : taffy :: geometry :: Size { width : auto () , height : taffy :: style :: Dimension :: Length (50f32) , } , aspect_ratio : Some (0.5f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH" ; super :: measure_standard_text (known_dimensions , available_space , TEXT , super :: WritingMode :: Horizontal , Some (0.5f32)) }) ,) . unwrap () ; + let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { position : taffy :: style :: Position :: Absolute , max_size : taffy :: geometry :: Size { width : auto () , height : taffy :: style :: Dimension :: Length (50f32) , } , aspect_ratio : Some (0.5f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH" ; crate :: generated :: measure_standard_text (known_dimensions , available_space , TEXT , crate :: generated :: WritingMode :: Horizontal , Some (0.5f32)) }) ,) . unwrap () ; let node = taffy .new_with_children( taffy::style::Style { diff --git a/tests/generated/block_absolute_aspect_ratio_fill_min_height.rs b/tests/generated/block/block_absolute_aspect_ratio_fill_min_height.rs similarity index 100% rename from tests/generated/block_absolute_aspect_ratio_fill_min_height.rs rename to tests/generated/block/block_absolute_aspect_ratio_fill_min_height.rs diff --git a/tests/generated/block_absolute_aspect_ratio_fill_min_width.rs b/tests/generated/block/block_absolute_aspect_ratio_fill_min_width.rs similarity index 100% rename from tests/generated/block_absolute_aspect_ratio_fill_min_width.rs rename to tests/generated/block/block_absolute_aspect_ratio_fill_min_width.rs diff --git a/tests/generated/block_absolute_aspect_ratio_fill_width.rs b/tests/generated/block/block_absolute_aspect_ratio_fill_width.rs similarity index 100% rename from tests/generated/block_absolute_aspect_ratio_fill_width.rs rename to tests/generated/block/block_absolute_aspect_ratio_fill_width.rs diff --git a/tests/generated/block_absolute_aspect_ratio_fill_width_from_inset.rs b/tests/generated/block/block_absolute_aspect_ratio_fill_width_from_inset.rs similarity index 100% rename from tests/generated/block_absolute_aspect_ratio_fill_width_from_inset.rs rename to tests/generated/block/block_absolute_aspect_ratio_fill_width_from_inset.rs diff --git a/tests/generated/block_absolute_aspect_ratio_height_overrides_inset.rs b/tests/generated/block/block_absolute_aspect_ratio_height_overrides_inset.rs similarity index 100% rename from tests/generated/block_absolute_aspect_ratio_height_overrides_inset.rs rename to tests/generated/block/block_absolute_aspect_ratio_height_overrides_inset.rs diff --git a/tests/generated/block_absolute_aspect_ratio_width_overrides_inset.rs b/tests/generated/block/block_absolute_aspect_ratio_width_overrides_inset.rs similarity index 100% rename from tests/generated/block_absolute_aspect_ratio_width_overrides_inset.rs rename to tests/generated/block/block_absolute_aspect_ratio_width_overrides_inset.rs diff --git a/tests/generated/block_absolute_child_with_margin_x.rs b/tests/generated/block/block_absolute_child_with_margin_x.rs similarity index 100% rename from tests/generated/block_absolute_child_with_margin_x.rs rename to tests/generated/block/block_absolute_child_with_margin_x.rs diff --git a/tests/generated/block_absolute_child_with_margin_y.rs b/tests/generated/block/block_absolute_child_with_margin_y.rs similarity index 100% rename from tests/generated/block_absolute_child_with_margin_y.rs rename to tests/generated/block/block_absolute_child_with_margin_y.rs diff --git a/tests/generated/block_absolute_child_with_max_height.rs b/tests/generated/block/block_absolute_child_with_max_height.rs similarity index 100% rename from tests/generated/block_absolute_child_with_max_height.rs rename to tests/generated/block/block_absolute_child_with_max_height.rs diff --git a/tests/generated/block_absolute_layout_child_order.rs b/tests/generated/block/block_absolute_layout_child_order.rs similarity index 100% rename from tests/generated/block_absolute_layout_child_order.rs rename to tests/generated/block/block_absolute_layout_child_order.rs diff --git a/tests/generated/block_absolute_layout_no_size.rs b/tests/generated/block/block_absolute_layout_no_size.rs similarity index 100% rename from tests/generated/block_absolute_layout_no_size.rs rename to tests/generated/block/block_absolute_layout_no_size.rs diff --git a/tests/generated/block_absolute_layout_percentage_bottom_based_on_parent_height.rs b/tests/generated/block/block_absolute_layout_percentage_bottom_based_on_parent_height.rs similarity index 100% rename from tests/generated/block_absolute_layout_percentage_bottom_based_on_parent_height.rs rename to tests/generated/block/block_absolute_layout_percentage_bottom_based_on_parent_height.rs diff --git a/tests/generated/block_absolute_layout_percentage_height.rs b/tests/generated/block/block_absolute_layout_percentage_height.rs similarity index 100% rename from tests/generated/block_absolute_layout_percentage_height.rs rename to tests/generated/block/block_absolute_layout_percentage_height.rs diff --git a/tests/generated/block_absolute_layout_row_width_height_end_bottom.rs b/tests/generated/block/block_absolute_layout_row_width_height_end_bottom.rs similarity index 100% rename from tests/generated/block_absolute_layout_row_width_height_end_bottom.rs rename to tests/generated/block/block_absolute_layout_row_width_height_end_bottom.rs diff --git a/tests/generated/block_absolute_layout_start_top_end_bottom.rs b/tests/generated/block/block_absolute_layout_start_top_end_bottom.rs similarity index 100% rename from tests/generated/block_absolute_layout_start_top_end_bottom.rs rename to tests/generated/block/block_absolute_layout_start_top_end_bottom.rs diff --git a/tests/generated/block_absolute_layout_width_height_end_bottom.rs b/tests/generated/block/block_absolute_layout_width_height_end_bottom.rs similarity index 100% rename from tests/generated/block_absolute_layout_width_height_end_bottom.rs rename to tests/generated/block/block_absolute_layout_width_height_end_bottom.rs diff --git a/tests/generated/block_absolute_layout_width_height_start_top.rs b/tests/generated/block/block_absolute_layout_width_height_start_top.rs similarity index 100% rename from tests/generated/block_absolute_layout_width_height_start_top.rs rename to tests/generated/block/block_absolute_layout_width_height_start_top.rs diff --git a/tests/generated/block_absolute_layout_width_height_start_top_end_bottom.rs b/tests/generated/block/block_absolute_layout_width_height_start_top_end_bottom.rs similarity index 100% rename from tests/generated/block_absolute_layout_width_height_start_top_end_bottom.rs rename to tests/generated/block/block_absolute_layout_width_height_start_top_end_bottom.rs diff --git a/tests/generated/block_absolute_layout_within_border.rs b/tests/generated/block/block_absolute_layout_within_border.rs similarity index 100% rename from tests/generated/block_absolute_layout_within_border.rs rename to tests/generated/block/block_absolute_layout_within_border.rs diff --git a/tests/generated/block_absolute_margin_auto_bottom_and_top_with_inset.rs b/tests/generated/block/block_absolute_margin_auto_bottom_and_top_with_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_bottom_and_top_with_inset.rs rename to tests/generated/block/block_absolute_margin_auto_bottom_and_top_with_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_bottom_and_top_without_inset.rs b/tests/generated/block/block_absolute_margin_auto_bottom_and_top_without_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_bottom_and_top_without_inset.rs rename to tests/generated/block/block_absolute_margin_auto_bottom_and_top_without_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_bottom_with_inset.rs b/tests/generated/block/block_absolute_margin_auto_bottom_with_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_bottom_with_inset.rs rename to tests/generated/block/block_absolute_margin_auto_bottom_with_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_bottom_without_inset.rs b/tests/generated/block/block_absolute_margin_auto_bottom_without_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_bottom_without_inset.rs rename to tests/generated/block/block_absolute_margin_auto_bottom_without_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_left_and_right_with_inset.rs b/tests/generated/block/block_absolute_margin_auto_left_and_right_with_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_left_and_right_with_inset.rs rename to tests/generated/block/block_absolute_margin_auto_left_and_right_with_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_left_and_right_without_inset.rs b/tests/generated/block/block_absolute_margin_auto_left_and_right_without_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_left_and_right_without_inset.rs rename to tests/generated/block/block_absolute_margin_auto_left_and_right_without_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_left_child_bigger_than_parent_with_inset.rs b/tests/generated/block/block_absolute_margin_auto_left_child_bigger_than_parent_with_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_left_child_bigger_than_parent_with_inset.rs rename to tests/generated/block/block_absolute_margin_auto_left_child_bigger_than_parent_with_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_left_child_bigger_than_parent_without_inset.rs b/tests/generated/block/block_absolute_margin_auto_left_child_bigger_than_parent_without_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_left_child_bigger_than_parent_without_inset.rs rename to tests/generated/block/block_absolute_margin_auto_left_child_bigger_than_parent_without_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_with_inset.rs b/tests/generated/block/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_with_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_with_inset.rs rename to tests/generated/block/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_with_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_without_inset.rs b/tests/generated/block/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_without_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_without_inset.rs rename to tests/generated/block/block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_without_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_left_right_child_bigger_than_parent_with_inset.rs b/tests/generated/block/block_absolute_margin_auto_left_right_child_bigger_than_parent_with_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_left_right_child_bigger_than_parent_with_inset.rs rename to tests/generated/block/block_absolute_margin_auto_left_right_child_bigger_than_parent_with_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_left_right_child_bigger_than_parent_without_inset.rs b/tests/generated/block/block_absolute_margin_auto_left_right_child_bigger_than_parent_without_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_left_right_child_bigger_than_parent_without_inset.rs rename to tests/generated/block/block_absolute_margin_auto_left_right_child_bigger_than_parent_without_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_left_with_inset.rs b/tests/generated/block/block_absolute_margin_auto_left_with_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_left_with_inset.rs rename to tests/generated/block/block_absolute_margin_auto_left_with_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_left_without_inset.rs b/tests/generated/block/block_absolute_margin_auto_left_without_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_left_without_inset.rs rename to tests/generated/block/block_absolute_margin_auto_left_without_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_mutiple_children_with_inset.rs b/tests/generated/block/block_absolute_margin_auto_mutiple_children_with_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_mutiple_children_with_inset.rs rename to tests/generated/block/block_absolute_margin_auto_mutiple_children_with_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_mutiple_children_without_inset.rs b/tests/generated/block/block_absolute_margin_auto_mutiple_children_without_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_mutiple_children_without_inset.rs rename to tests/generated/block/block_absolute_margin_auto_mutiple_children_without_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_right_with_inset.rs b/tests/generated/block/block_absolute_margin_auto_right_with_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_right_with_inset.rs rename to tests/generated/block/block_absolute_margin_auto_right_with_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_right_without_inset.rs b/tests/generated/block/block_absolute_margin_auto_right_without_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_right_without_inset.rs rename to tests/generated/block/block_absolute_margin_auto_right_without_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_top_with_inset.rs b/tests/generated/block/block_absolute_margin_auto_top_with_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_top_with_inset.rs rename to tests/generated/block/block_absolute_margin_auto_top_with_inset.rs diff --git a/tests/generated/block_absolute_margin_auto_top_without_inset.rs b/tests/generated/block/block_absolute_margin_auto_top_without_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_auto_top_without_inset.rs rename to tests/generated/block/block_absolute_margin_auto_top_without_inset.rs diff --git a/tests/generated/block_absolute_margin_bottom_left_with_inset.rs b/tests/generated/block/block_absolute_margin_bottom_left_with_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_bottom_left_with_inset.rs rename to tests/generated/block/block_absolute_margin_bottom_left_with_inset.rs diff --git a/tests/generated/block_absolute_margin_bottom_left_without_inset.rs b/tests/generated/block/block_absolute_margin_bottom_left_without_inset.rs similarity index 100% rename from tests/generated/block_absolute_margin_bottom_left_without_inset.rs rename to tests/generated/block/block_absolute_margin_bottom_left_without_inset.rs diff --git a/tests/generated/block_absolute_minmax_bottom_right_max.rs b/tests/generated/block/block_absolute_minmax_bottom_right_max.rs similarity index 100% rename from tests/generated/block_absolute_minmax_bottom_right_max.rs rename to tests/generated/block/block_absolute_minmax_bottom_right_max.rs diff --git a/tests/generated/block_absolute_minmax_bottom_right_min_max.rs b/tests/generated/block/block_absolute_minmax_bottom_right_min_max.rs similarity index 100% rename from tests/generated/block_absolute_minmax_bottom_right_min_max.rs rename to tests/generated/block/block_absolute_minmax_bottom_right_min_max.rs diff --git a/tests/generated/block_absolute_minmax_bottom_right_min_max_preferred.rs b/tests/generated/block/block_absolute_minmax_bottom_right_min_max_preferred.rs similarity index 100% rename from tests/generated/block_absolute_minmax_bottom_right_min_max_preferred.rs rename to tests/generated/block/block_absolute_minmax_bottom_right_min_max_preferred.rs diff --git a/tests/generated/block_absolute_minmax_top_left_bottom_right_max.rs b/tests/generated/block/block_absolute_minmax_top_left_bottom_right_max.rs similarity index 100% rename from tests/generated/block_absolute_minmax_top_left_bottom_right_max.rs rename to tests/generated/block/block_absolute_minmax_top_left_bottom_right_max.rs diff --git a/tests/generated/block_absolute_minmax_top_left_bottom_right_min_max.rs b/tests/generated/block/block_absolute_minmax_top_left_bottom_right_min_max.rs similarity index 100% rename from tests/generated/block_absolute_minmax_top_left_bottom_right_min_max.rs rename to tests/generated/block/block_absolute_minmax_top_left_bottom_right_min_max.rs diff --git a/tests/generated/block_absolute_no_styles.rs b/tests/generated/block/block_absolute_no_styles.rs similarity index 100% rename from tests/generated/block_absolute_no_styles.rs rename to tests/generated/block/block_absolute_no_styles.rs diff --git a/tests/generated/block_absolute_padding_border_overrides_max_size.rs b/tests/generated/block/block_absolute_padding_border_overrides_max_size.rs similarity index 100% rename from tests/generated/block_absolute_padding_border_overrides_max_size.rs rename to tests/generated/block/block_absolute_padding_border_overrides_max_size.rs diff --git a/tests/generated/block_absolute_padding_border_overrides_size.rs b/tests/generated/block/block_absolute_padding_border_overrides_size.rs similarity index 100% rename from tests/generated/block_absolute_padding_border_overrides_size.rs rename to tests/generated/block/block_absolute_padding_border_overrides_size.rs diff --git a/tests/generated/block_align_baseline_child.rs b/tests/generated/block/block_align_baseline_child.rs similarity index 100% rename from tests/generated/block_align_baseline_child.rs rename to tests/generated/block/block_align_baseline_child.rs diff --git a/tests/generated/block_align_baseline_child_margin.rs b/tests/generated/block/block_align_baseline_child_margin.rs similarity index 100% rename from tests/generated/block_align_baseline_child_margin.rs rename to tests/generated/block/block_align_baseline_child_margin.rs diff --git a/tests/generated/block_align_baseline_child_margin_percent.rs b/tests/generated/block/block_align_baseline_child_margin_percent.rs similarity index 100% rename from tests/generated/block_align_baseline_child_margin_percent.rs rename to tests/generated/block/block_align_baseline_child_margin_percent.rs diff --git a/tests/generated/block_align_baseline_child_padding.rs b/tests/generated/block/block_align_baseline_child_padding.rs similarity index 100% rename from tests/generated/block_align_baseline_child_padding.rs rename to tests/generated/block/block_align_baseline_child_padding.rs diff --git a/tests/generated/block_align_baseline_child_top.rs b/tests/generated/block/block_align_baseline_child_top.rs similarity index 100% rename from tests/generated/block_align_baseline_child_top.rs rename to tests/generated/block/block_align_baseline_child_top.rs diff --git a/tests/generated/block_align_baseline_child_top2.rs b/tests/generated/block/block_align_baseline_child_top2.rs similarity index 100% rename from tests/generated/block_align_baseline_child_top2.rs rename to tests/generated/block/block_align_baseline_child_top2.rs diff --git a/tests/generated/block_align_baseline_double_nested_child.rs b/tests/generated/block/block_align_baseline_double_nested_child.rs similarity index 100% rename from tests/generated/block_align_baseline_double_nested_child.rs rename to tests/generated/block/block_align_baseline_double_nested_child.rs diff --git a/tests/generated/block_aspect_ratio_fill_height.rs b/tests/generated/block/block_aspect_ratio_fill_height.rs similarity index 100% rename from tests/generated/block_aspect_ratio_fill_height.rs rename to tests/generated/block/block_aspect_ratio_fill_height.rs diff --git a/tests/generated/block_aspect_ratio_fill_max_height.rs b/tests/generated/block/block_aspect_ratio_fill_max_height.rs similarity index 90% rename from tests/generated/block_aspect_ratio_fill_max_height.rs rename to tests/generated/block/block_aspect_ratio_fill_max_height.rs index 64bfe1d71..340499c3e 100644 --- a/tests/generated/block_aspect_ratio_fill_max_height.rs +++ b/tests/generated/block/block_aspect_ratio_fill_max_height.rs @@ -3,7 +3,7 @@ fn block_aspect_ratio_fill_max_height() { #[allow(unused_imports)] use taffy::{prelude::*, tree::Layout}; let mut taffy = taffy::Taffy::new(); - let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { display : taffy :: style :: Display :: Block , max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (40f32) , height : auto () , } , aspect_ratio : Some (2f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH" ; super :: measure_standard_text (known_dimensions , available_space , TEXT , super :: WritingMode :: Horizontal , Some (2f32)) }) ,) . unwrap () ; + let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { display : taffy :: style :: Display :: Block , max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (40f32) , height : auto () , } , aspect_ratio : Some (2f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH" ; crate :: generated :: measure_standard_text (known_dimensions , available_space , TEXT , crate :: generated :: WritingMode :: Horizontal , Some (2f32)) }) ,) . unwrap () ; let node = taffy .new_with_children( taffy::style::Style { diff --git a/tests/generated/block_aspect_ratio_fill_max_width.rs b/tests/generated/block/block_aspect_ratio_fill_max_width.rs similarity index 95% rename from tests/generated/block_aspect_ratio_fill_max_width.rs rename to tests/generated/block/block_aspect_ratio_fill_max_width.rs index a55ff3a83..57174b09b 100644 --- a/tests/generated/block_aspect_ratio_fill_max_width.rs +++ b/tests/generated/block/block_aspect_ratio_fill_max_width.rs @@ -13,11 +13,11 @@ fn block_aspect_ratio_fill_max_width() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, Some(2f32), ) }), diff --git a/tests/generated/block_aspect_ratio_fill_min_height.rs b/tests/generated/block/block_aspect_ratio_fill_min_height.rs similarity index 100% rename from tests/generated/block_aspect_ratio_fill_min_height.rs rename to tests/generated/block/block_aspect_ratio_fill_min_height.rs diff --git a/tests/generated/block_aspect_ratio_fill_min_width.rs b/tests/generated/block/block_aspect_ratio_fill_min_width.rs similarity index 95% rename from tests/generated/block_aspect_ratio_fill_min_width.rs rename to tests/generated/block/block_aspect_ratio_fill_min_width.rs index 7aacc4e7c..27cbb49fc 100644 --- a/tests/generated/block_aspect_ratio_fill_min_width.rs +++ b/tests/generated/block/block_aspect_ratio_fill_min_width.rs @@ -13,11 +13,11 @@ fn block_aspect_ratio_fill_min_width() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "\n \n "; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, Some(2f32), ) }), diff --git a/tests/generated/block_aspect_ratio_fill_width.rs b/tests/generated/block/block_aspect_ratio_fill_width.rs similarity index 100% rename from tests/generated/block_aspect_ratio_fill_width.rs rename to tests/generated/block/block_aspect_ratio_fill_width.rs diff --git a/tests/generated/block_basic.rs b/tests/generated/block/block_basic.rs similarity index 100% rename from tests/generated/block_basic.rs rename to tests/generated/block/block_basic.rs diff --git a/tests/generated/block_border_fixed_size.rs b/tests/generated/block/block_border_fixed_size.rs similarity index 100% rename from tests/generated/block_border_fixed_size.rs rename to tests/generated/block/block_border_fixed_size.rs diff --git a/tests/generated/block_border_intrinsic_size.rs b/tests/generated/block/block_border_intrinsic_size.rs similarity index 100% rename from tests/generated/block_border_intrinsic_size.rs rename to tests/generated/block/block_border_intrinsic_size.rs diff --git a/tests/generated/block_border_percentage_fixed_size.rs b/tests/generated/block/block_border_percentage_fixed_size.rs similarity index 100% rename from tests/generated/block_border_percentage_fixed_size.rs rename to tests/generated/block/block_border_percentage_fixed_size.rs diff --git a/tests/generated/block_border_percentage_intrinsic_size.rs b/tests/generated/block/block_border_percentage_intrinsic_size.rs similarity index 100% rename from tests/generated/block_border_percentage_intrinsic_size.rs rename to tests/generated/block/block_border_percentage_intrinsic_size.rs diff --git a/tests/generated/block_display_none.rs b/tests/generated/block/block_display_none.rs similarity index 100% rename from tests/generated/block_display_none.rs rename to tests/generated/block/block_display_none.rs diff --git a/tests/generated/block_display_none_with_child.rs b/tests/generated/block/block_display_none_with_child.rs similarity index 100% rename from tests/generated/block_display_none_with_child.rs rename to tests/generated/block/block_display_none_with_child.rs diff --git a/tests/generated/block_display_none_with_inset.rs b/tests/generated/block/block_display_none_with_inset.rs similarity index 100% rename from tests/generated/block_display_none_with_inset.rs rename to tests/generated/block/block_display_none_with_inset.rs diff --git a/tests/generated/block_display_none_with_margin.rs b/tests/generated/block/block_display_none_with_margin.rs similarity index 100% rename from tests/generated/block_display_none_with_margin.rs rename to tests/generated/block/block_display_none_with_margin.rs diff --git a/tests/generated/block_display_none_with_position_absolute.rs b/tests/generated/block/block_display_none_with_position_absolute.rs similarity index 100% rename from tests/generated/block_display_none_with_position_absolute.rs rename to tests/generated/block/block_display_none_with_position_absolute.rs diff --git a/tests/generated/block_inset_fixed.rs b/tests/generated/block/block_inset_fixed.rs similarity index 100% rename from tests/generated/block_inset_fixed.rs rename to tests/generated/block/block_inset_fixed.rs diff --git a/tests/generated/block_inset_percentage.rs b/tests/generated/block/block_inset_percentage.rs similarity index 100% rename from tests/generated/block_inset_percentage.rs rename to tests/generated/block/block_inset_percentage.rs diff --git a/tests/generated/block_intrinsic_width.rs b/tests/generated/block/block_intrinsic_width.rs similarity index 100% rename from tests/generated/block_intrinsic_width.rs rename to tests/generated/block/block_intrinsic_width.rs diff --git a/tests/generated/block_margin_auto_bottom.rs b/tests/generated/block/block_margin_auto_bottom.rs similarity index 100% rename from tests/generated/block_margin_auto_bottom.rs rename to tests/generated/block/block_margin_auto_bottom.rs diff --git a/tests/generated/block_margin_auto_bottom_and_top.rs b/tests/generated/block/block_margin_auto_bottom_and_top.rs similarity index 100% rename from tests/generated/block_margin_auto_bottom_and_top.rs rename to tests/generated/block/block_margin_auto_bottom_and_top.rs diff --git a/tests/generated/block_margin_auto_left.rs b/tests/generated/block/block_margin_auto_left.rs similarity index 100% rename from tests/generated/block_margin_auto_left.rs rename to tests/generated/block/block_margin_auto_left.rs diff --git a/tests/generated/block_margin_auto_left_and_right.rs b/tests/generated/block/block_margin_auto_left_and_right.rs similarity index 100% rename from tests/generated/block_margin_auto_left_and_right.rs rename to tests/generated/block/block_margin_auto_left_and_right.rs diff --git a/tests/generated/block_margin_auto_left_child_bigger_than_parent.rs b/tests/generated/block/block_margin_auto_left_child_bigger_than_parent.rs similarity index 100% rename from tests/generated/block_margin_auto_left_child_bigger_than_parent.rs rename to tests/generated/block/block_margin_auto_left_child_bigger_than_parent.rs diff --git a/tests/generated/block_margin_auto_left_fix_right_child_bigger_than_parent.rs b/tests/generated/block/block_margin_auto_left_fix_right_child_bigger_than_parent.rs similarity index 100% rename from tests/generated/block_margin_auto_left_fix_right_child_bigger_than_parent.rs rename to tests/generated/block/block_margin_auto_left_fix_right_child_bigger_than_parent.rs diff --git a/tests/generated/block_margin_auto_left_right_child_bigger_than_parent.rs b/tests/generated/block/block_margin_auto_left_right_child_bigger_than_parent.rs similarity index 100% rename from tests/generated/block_margin_auto_left_right_child_bigger_than_parent.rs rename to tests/generated/block/block_margin_auto_left_right_child_bigger_than_parent.rs diff --git a/tests/generated/block_margin_auto_mutiple_children.rs b/tests/generated/block/block_margin_auto_mutiple_children.rs similarity index 100% rename from tests/generated/block_margin_auto_mutiple_children.rs rename to tests/generated/block/block_margin_auto_mutiple_children.rs diff --git a/tests/generated/block_margin_auto_right.rs b/tests/generated/block/block_margin_auto_right.rs similarity index 100% rename from tests/generated/block_margin_auto_right.rs rename to tests/generated/block/block_margin_auto_right.rs diff --git a/tests/generated/block_margin_auto_top.rs b/tests/generated/block/block_margin_auto_top.rs similarity index 100% rename from tests/generated/block_margin_auto_top.rs rename to tests/generated/block/block_margin_auto_top.rs diff --git a/tests/generated/block_margin_x_fixed_auto_bottom.rs b/tests/generated/block/block_margin_x_fixed_auto_bottom.rs similarity index 100% rename from tests/generated/block_margin_x_fixed_auto_bottom.rs rename to tests/generated/block/block_margin_x_fixed_auto_bottom.rs diff --git a/tests/generated/block_margin_x_fixed_auto_left.rs b/tests/generated/block/block_margin_x_fixed_auto_left.rs similarity index 100% rename from tests/generated/block_margin_x_fixed_auto_left.rs rename to tests/generated/block/block_margin_x_fixed_auto_left.rs diff --git a/tests/generated/block_margin_x_fixed_auto_left_and_right.rs b/tests/generated/block/block_margin_x_fixed_auto_left_and_right.rs similarity index 100% rename from tests/generated/block_margin_x_fixed_auto_left_and_right.rs rename to tests/generated/block/block_margin_x_fixed_auto_left_and_right.rs diff --git a/tests/generated/block_margin_x_fixed_auto_right.rs b/tests/generated/block/block_margin_x_fixed_auto_right.rs similarity index 100% rename from tests/generated/block_margin_x_fixed_auto_right.rs rename to tests/generated/block/block_margin_x_fixed_auto_right.rs diff --git a/tests/generated/block_margin_x_fixed_auto_top.rs b/tests/generated/block/block_margin_x_fixed_auto_top.rs similarity index 100% rename from tests/generated/block_margin_x_fixed_auto_top.rs rename to tests/generated/block/block_margin_x_fixed_auto_top.rs diff --git a/tests/generated/block_margin_x_fixed_size_negative.rs b/tests/generated/block/block_margin_x_fixed_size_negative.rs similarity index 100% rename from tests/generated/block_margin_x_fixed_size_negative.rs rename to tests/generated/block/block_margin_x_fixed_size_negative.rs diff --git a/tests/generated/block_margin_x_fixed_size_positive.rs b/tests/generated/block/block_margin_x_fixed_size_positive.rs similarity index 100% rename from tests/generated/block_margin_x_fixed_size_positive.rs rename to tests/generated/block/block_margin_x_fixed_size_positive.rs diff --git a/tests/generated/block_margin_x_intrinsic_size_negative.rs b/tests/generated/block/block_margin_x_intrinsic_size_negative.rs similarity index 100% rename from tests/generated/block_margin_x_intrinsic_size_negative.rs rename to tests/generated/block/block_margin_x_intrinsic_size_negative.rs diff --git a/tests/generated/block_margin_x_intrinsic_size_positive.rs b/tests/generated/block/block_margin_x_intrinsic_size_positive.rs similarity index 100% rename from tests/generated/block_margin_x_intrinsic_size_positive.rs rename to tests/generated/block/block_margin_x_intrinsic_size_positive.rs diff --git a/tests/generated/block_margin_x_percentage_fixed_size_negative.rs b/tests/generated/block/block_margin_x_percentage_fixed_size_negative.rs similarity index 100% rename from tests/generated/block_margin_x_percentage_fixed_size_negative.rs rename to tests/generated/block/block_margin_x_percentage_fixed_size_negative.rs diff --git a/tests/generated/block_margin_x_percentage_fixed_size_positive.rs b/tests/generated/block/block_margin_x_percentage_fixed_size_positive.rs similarity index 100% rename from tests/generated/block_margin_x_percentage_fixed_size_positive.rs rename to tests/generated/block/block_margin_x_percentage_fixed_size_positive.rs diff --git a/tests/generated/block_margin_x_percentage_intrinsic_size_other_negative.rs b/tests/generated/block/block_margin_x_percentage_intrinsic_size_other_negative.rs similarity index 100% rename from tests/generated/block_margin_x_percentage_intrinsic_size_other_negative.rs rename to tests/generated/block/block_margin_x_percentage_intrinsic_size_other_negative.rs diff --git a/tests/generated/block_margin_x_percentage_intrinsic_size_other_positive.rs b/tests/generated/block/block_margin_x_percentage_intrinsic_size_other_positive.rs similarity index 100% rename from tests/generated/block_margin_x_percentage_intrinsic_size_other_positive.rs rename to tests/generated/block/block_margin_x_percentage_intrinsic_size_other_positive.rs diff --git a/tests/generated/block_margin_x_percentage_intrinsic_size_self_negative.rs b/tests/generated/block/block_margin_x_percentage_intrinsic_size_self_negative.rs similarity index 100% rename from tests/generated/block_margin_x_percentage_intrinsic_size_self_negative.rs rename to tests/generated/block/block_margin_x_percentage_intrinsic_size_self_negative.rs diff --git a/tests/generated/block_margin_x_percentage_intrinsic_size_self_positive.rs b/tests/generated/block/block_margin_x_percentage_intrinsic_size_self_positive.rs similarity index 100% rename from tests/generated/block_margin_x_percentage_intrinsic_size_self_positive.rs rename to tests/generated/block/block_margin_x_percentage_intrinsic_size_self_positive.rs diff --git a/tests/generated/block_margin_y_collapse_complex.rs b/tests/generated/block/block_margin_y_collapse_complex.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_complex.rs rename to tests/generated/block/block_margin_y_collapse_complex.rs diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_aspect_ratio.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_aspect_ratio.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_blocked_by_aspect_ratio.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_aspect_ratio.rs diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_border_bottom.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_border_bottom.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_blocked_by_border_bottom.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_border_bottom.rs diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_border_top.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_border_top.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_blocked_by_border_top.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_border_top.rs diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_height.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_height.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_blocked_by_height.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_height.rs diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_line_box.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_line_box.rs similarity index 97% rename from tests/generated/block_margin_y_collapse_through_blocked_by_line_box.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_line_box.rs index 1de2168f2..ca42835f9 100644 --- a/tests/generated/block_margin_y_collapse_through_blocked_by_line_box.rs +++ b/tests/generated/block/block_margin_y_collapse_through_blocked_by_line_box.rs @@ -30,11 +30,11 @@ fn block_margin_y_collapse_through_blocked_by_line_box() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_line_box_with_height_zero.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_line_box_with_height_zero.rs similarity index 97% rename from tests/generated/block_margin_y_collapse_through_blocked_by_line_box_with_height_zero.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_line_box_with_height_zero.rs index 4e517fe12..0cbf6c9de 100644 --- a/tests/generated/block_margin_y_collapse_through_blocked_by_line_box_with_height_zero.rs +++ b/tests/generated/block/block_margin_y_collapse_through_blocked_by_line_box_with_height_zero.rs @@ -31,11 +31,11 @@ fn block_margin_y_collapse_through_blocked_by_line_box_with_height_zero() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero.rs similarity index 97% rename from tests/generated/block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero.rs index 7c188f615..4aca6c72e 100644 --- a/tests/generated/block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero.rs +++ b/tests/generated/block/block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero.rs @@ -31,11 +31,11 @@ fn block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_min_height.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_min_height.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_blocked_by_min_height.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_min_height.rs diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_overflow_x_hidden.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_overflow_x_hidden.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_blocked_by_overflow_x_hidden.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_overflow_x_hidden.rs diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_overflow_x_scroll.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_overflow_x_scroll.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_blocked_by_overflow_x_scroll.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_overflow_x_scroll.rs diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_overflow_y_hidden.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_overflow_y_hidden.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_blocked_by_overflow_y_hidden.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_overflow_y_hidden.rs diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_overflow_y_scroll.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_overflow_y_scroll.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_blocked_by_overflow_y_scroll.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_overflow_y_scroll.rs diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_padding_bottom.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_padding_bottom.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_blocked_by_padding_bottom.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_padding_bottom.rs diff --git a/tests/generated/block_margin_y_collapse_through_blocked_by_padding_top.rs b/tests/generated/block/block_margin_y_collapse_through_blocked_by_padding_top.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_blocked_by_padding_top.rs rename to tests/generated/block/block_margin_y_collapse_through_blocked_by_padding_top.rs diff --git a/tests/generated/block_margin_y_collapse_through_negative.rs b/tests/generated/block/block_margin_y_collapse_through_negative.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_negative.rs rename to tests/generated/block/block_margin_y_collapse_through_negative.rs diff --git a/tests/generated/block_margin_y_collapse_through_positive.rs b/tests/generated/block/block_margin_y_collapse_through_positive.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_positive.rs rename to tests/generated/block/block_margin_y_collapse_through_positive.rs diff --git a/tests/generated/block_margin_y_collapse_through_positive_and_negative.rs b/tests/generated/block/block_margin_y_collapse_through_positive_and_negative.rs similarity index 100% rename from tests/generated/block_margin_y_collapse_through_positive_and_negative.rs rename to tests/generated/block/block_margin_y_collapse_through_positive_and_negative.rs diff --git a/tests/generated/block_margin_y_collapse_through_with_absolute_child.rs b/tests/generated/block/block_margin_y_collapse_through_with_absolute_child.rs similarity index 97% rename from tests/generated/block_margin_y_collapse_through_with_absolute_child.rs rename to tests/generated/block/block_margin_y_collapse_through_with_absolute_child.rs index 9821746eb..02db9aec8 100644 --- a/tests/generated/block_margin_y_collapse_through_with_absolute_child.rs +++ b/tests/generated/block/block_margin_y_collapse_through_with_absolute_child.rs @@ -21,11 +21,11 @@ fn block_margin_y_collapse_through_with_absolute_child() { taffy::style::Style { position: taffy::style::Position::Absolute, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/block_margin_y_first_child_collapse_blocked_by_border_top.rs b/tests/generated/block/block_margin_y_first_child_collapse_blocked_by_border_top.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_blocked_by_border_top.rs rename to tests/generated/block/block_margin_y_first_child_collapse_blocked_by_border_top.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_blocked_by_overflow_x_hidden.rs b/tests/generated/block/block_margin_y_first_child_collapse_blocked_by_overflow_x_hidden.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_blocked_by_overflow_x_hidden.rs rename to tests/generated/block/block_margin_y_first_child_collapse_blocked_by_overflow_x_hidden.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_blocked_by_overflow_x_scroll.rs b/tests/generated/block/block_margin_y_first_child_collapse_blocked_by_overflow_x_scroll.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_blocked_by_overflow_x_scroll.rs rename to tests/generated/block/block_margin_y_first_child_collapse_blocked_by_overflow_x_scroll.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_blocked_by_overflow_y_hidden.rs b/tests/generated/block/block_margin_y_first_child_collapse_blocked_by_overflow_y_hidden.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_blocked_by_overflow_y_hidden.rs rename to tests/generated/block/block_margin_y_first_child_collapse_blocked_by_overflow_y_hidden.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_blocked_by_overflow_y_scroll.rs b/tests/generated/block/block_margin_y_first_child_collapse_blocked_by_overflow_y_scroll.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_blocked_by_overflow_y_scroll.rs rename to tests/generated/block/block_margin_y_first_child_collapse_blocked_by_overflow_y_scroll.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_blocked_by_padding_top.rs b/tests/generated/block/block_margin_y_first_child_collapse_blocked_by_padding_top.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_blocked_by_padding_top.rs rename to tests/generated/block/block_margin_y_first_child_collapse_blocked_by_padding_top.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_negative_equal.rs b/tests/generated/block/block_margin_y_first_child_collapse_negative_equal.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_negative_equal.rs rename to tests/generated/block/block_margin_y_first_child_collapse_negative_equal.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_negative_parent_larger.rs b/tests/generated/block/block_margin_y_first_child_collapse_negative_parent_larger.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_negative_parent_larger.rs rename to tests/generated/block/block_margin_y_first_child_collapse_negative_parent_larger.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_negative_parent_smaller.rs b/tests/generated/block/block_margin_y_first_child_collapse_negative_parent_smaller.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_negative_parent_smaller.rs rename to tests/generated/block/block_margin_y_first_child_collapse_negative_parent_smaller.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_not_blocked_by_border_bottom.rs b/tests/generated/block/block_margin_y_first_child_collapse_not_blocked_by_border_bottom.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_not_blocked_by_border_bottom.rs rename to tests/generated/block/block_margin_y_first_child_collapse_not_blocked_by_border_bottom.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_not_blocked_by_padding_bottom.rs b/tests/generated/block/block_margin_y_first_child_collapse_not_blocked_by_padding_bottom.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_not_blocked_by_padding_bottom.rs rename to tests/generated/block/block_margin_y_first_child_collapse_not_blocked_by_padding_bottom.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_positive_and_negative.rs b/tests/generated/block/block_margin_y_first_child_collapse_positive_and_negative.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_positive_and_negative.rs rename to tests/generated/block/block_margin_y_first_child_collapse_positive_and_negative.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_positive_equal.rs b/tests/generated/block/block_margin_y_first_child_collapse_positive_equal.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_positive_equal.rs rename to tests/generated/block/block_margin_y_first_child_collapse_positive_equal.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_positive_parent_larger.rs b/tests/generated/block/block_margin_y_first_child_collapse_positive_parent_larger.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_positive_parent_larger.rs rename to tests/generated/block/block_margin_y_first_child_collapse_positive_parent_larger.rs diff --git a/tests/generated/block_margin_y_first_child_collapse_positive_parent_smaller.rs b/tests/generated/block/block_margin_y_first_child_collapse_positive_parent_smaller.rs similarity index 100% rename from tests/generated/block_margin_y_first_child_collapse_positive_parent_smaller.rs rename to tests/generated/block/block_margin_y_first_child_collapse_positive_parent_smaller.rs diff --git a/tests/generated/block_margin_y_first_granchild_collapse_positive_and_negative.rs b/tests/generated/block/block_margin_y_first_granchild_collapse_positive_and_negative.rs similarity index 100% rename from tests/generated/block_margin_y_first_granchild_collapse_positive_and_negative.rs rename to tests/generated/block/block_margin_y_first_granchild_collapse_positive_and_negative.rs diff --git a/tests/generated/block_margin_y_first_granchild_collapse_positive_equal.rs b/tests/generated/block/block_margin_y_first_granchild_collapse_positive_equal.rs similarity index 100% rename from tests/generated/block_margin_y_first_granchild_collapse_positive_equal.rs rename to tests/generated/block/block_margin_y_first_granchild_collapse_positive_equal.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_blocked_by_border_bottom.rs b/tests/generated/block/block_margin_y_last_child_collapse_blocked_by_border_bottom.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_blocked_by_border_bottom.rs rename to tests/generated/block/block_margin_y_last_child_collapse_blocked_by_border_bottom.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_blocked_by_overflow_x_hidden.rs b/tests/generated/block/block_margin_y_last_child_collapse_blocked_by_overflow_x_hidden.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_blocked_by_overflow_x_hidden.rs rename to tests/generated/block/block_margin_y_last_child_collapse_blocked_by_overflow_x_hidden.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_blocked_by_overflow_x_scroll.rs b/tests/generated/block/block_margin_y_last_child_collapse_blocked_by_overflow_x_scroll.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_blocked_by_overflow_x_scroll.rs rename to tests/generated/block/block_margin_y_last_child_collapse_blocked_by_overflow_x_scroll.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_blocked_by_overflow_y_hidden.rs b/tests/generated/block/block_margin_y_last_child_collapse_blocked_by_overflow_y_hidden.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_blocked_by_overflow_y_hidden.rs rename to tests/generated/block/block_margin_y_last_child_collapse_blocked_by_overflow_y_hidden.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_blocked_by_overflow_y_scroll.rs b/tests/generated/block/block_margin_y_last_child_collapse_blocked_by_overflow_y_scroll.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_blocked_by_overflow_y_scroll.rs rename to tests/generated/block/block_margin_y_last_child_collapse_blocked_by_overflow_y_scroll.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_blocked_by_padding_bottom.rs b/tests/generated/block/block_margin_y_last_child_collapse_blocked_by_padding_bottom.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_blocked_by_padding_bottom.rs rename to tests/generated/block/block_margin_y_last_child_collapse_blocked_by_padding_bottom.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_negative_equal.rs b/tests/generated/block/block_margin_y_last_child_collapse_negative_equal.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_negative_equal.rs rename to tests/generated/block/block_margin_y_last_child_collapse_negative_equal.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_negative_parent_larger.rs b/tests/generated/block/block_margin_y_last_child_collapse_negative_parent_larger.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_negative_parent_larger.rs rename to tests/generated/block/block_margin_y_last_child_collapse_negative_parent_larger.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_negative_parent_smaller.rs b/tests/generated/block/block_margin_y_last_child_collapse_negative_parent_smaller.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_negative_parent_smaller.rs rename to tests/generated/block/block_margin_y_last_child_collapse_negative_parent_smaller.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_not_blocked_by_border_top.rs b/tests/generated/block/block_margin_y_last_child_collapse_not_blocked_by_border_top.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_not_blocked_by_border_top.rs rename to tests/generated/block/block_margin_y_last_child_collapse_not_blocked_by_border_top.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_not_blocked_by_padding_top.rs b/tests/generated/block/block_margin_y_last_child_collapse_not_blocked_by_padding_top.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_not_blocked_by_padding_top.rs rename to tests/generated/block/block_margin_y_last_child_collapse_not_blocked_by_padding_top.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_positive_and_negative.rs b/tests/generated/block/block_margin_y_last_child_collapse_positive_and_negative.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_positive_and_negative.rs rename to tests/generated/block/block_margin_y_last_child_collapse_positive_and_negative.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_positive_equal.rs b/tests/generated/block/block_margin_y_last_child_collapse_positive_equal.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_positive_equal.rs rename to tests/generated/block/block_margin_y_last_child_collapse_positive_equal.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_positive_parent_larger.rs b/tests/generated/block/block_margin_y_last_child_collapse_positive_parent_larger.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_positive_parent_larger.rs rename to tests/generated/block/block_margin_y_last_child_collapse_positive_parent_larger.rs diff --git a/tests/generated/block_margin_y_last_child_collapse_positive_parent_smaller.rs b/tests/generated/block/block_margin_y_last_child_collapse_positive_parent_smaller.rs similarity index 100% rename from tests/generated/block_margin_y_last_child_collapse_positive_parent_smaller.rs rename to tests/generated/block/block_margin_y_last_child_collapse_positive_parent_smaller.rs diff --git a/tests/generated/block_margin_y_last_granchild_collapse_positive_equal.rs b/tests/generated/block/block_margin_y_last_granchild_collapse_positive_equal.rs similarity index 100% rename from tests/generated/block_margin_y_last_granchild_collapse_positive_equal.rs rename to tests/generated/block/block_margin_y_last_granchild_collapse_positive_equal.rs diff --git a/tests/generated/block_margin_y_sibling_collapse_negative.rs b/tests/generated/block/block_margin_y_sibling_collapse_negative.rs similarity index 100% rename from tests/generated/block_margin_y_sibling_collapse_negative.rs rename to tests/generated/block/block_margin_y_sibling_collapse_negative.rs diff --git a/tests/generated/block_margin_y_sibling_collapse_negative_percentage.rs b/tests/generated/block/block_margin_y_sibling_collapse_negative_percentage.rs similarity index 100% rename from tests/generated/block_margin_y_sibling_collapse_negative_percentage.rs rename to tests/generated/block/block_margin_y_sibling_collapse_negative_percentage.rs diff --git a/tests/generated/block_margin_y_sibling_collapse_positive.rs b/tests/generated/block/block_margin_y_sibling_collapse_positive.rs similarity index 100% rename from tests/generated/block_margin_y_sibling_collapse_positive.rs rename to tests/generated/block/block_margin_y_sibling_collapse_positive.rs diff --git a/tests/generated/block_margin_y_sibling_collapse_positive_and_negative.rs b/tests/generated/block/block_margin_y_sibling_collapse_positive_and_negative.rs similarity index 100% rename from tests/generated/block_margin_y_sibling_collapse_positive_and_negative.rs rename to tests/generated/block/block_margin_y_sibling_collapse_positive_and_negative.rs diff --git a/tests/generated/block_margin_y_sibling_collapse_positive_and_negative_percentage.rs b/tests/generated/block/block_margin_y_sibling_collapse_positive_and_negative_percentage.rs similarity index 100% rename from tests/generated/block_margin_y_sibling_collapse_positive_and_negative_percentage.rs rename to tests/generated/block/block_margin_y_sibling_collapse_positive_and_negative_percentage.rs diff --git a/tests/generated/block_margin_y_sibling_collapse_positive_percentage.rs b/tests/generated/block/block_margin_y_sibling_collapse_positive_percentage.rs similarity index 100% rename from tests/generated/block_margin_y_sibling_collapse_positive_percentage.rs rename to tests/generated/block/block_margin_y_sibling_collapse_positive_percentage.rs diff --git a/tests/generated/block_margin_y_simple_negative.rs b/tests/generated/block/block_margin_y_simple_negative.rs similarity index 100% rename from tests/generated/block_margin_y_simple_negative.rs rename to tests/generated/block/block_margin_y_simple_negative.rs diff --git a/tests/generated/block_margin_y_simple_negative_percentage_other.rs b/tests/generated/block/block_margin_y_simple_negative_percentage_other.rs similarity index 100% rename from tests/generated/block_margin_y_simple_negative_percentage_other.rs rename to tests/generated/block/block_margin_y_simple_negative_percentage_other.rs diff --git a/tests/generated/block_margin_y_simple_negative_percentage_self.rs b/tests/generated/block/block_margin_y_simple_negative_percentage_self.rs similarity index 100% rename from tests/generated/block_margin_y_simple_negative_percentage_self.rs rename to tests/generated/block/block_margin_y_simple_negative_percentage_self.rs diff --git a/tests/generated/block_margin_y_simple_positive.rs b/tests/generated/block/block_margin_y_simple_positive.rs similarity index 100% rename from tests/generated/block_margin_y_simple_positive.rs rename to tests/generated/block/block_margin_y_simple_positive.rs diff --git a/tests/generated/block_margin_y_simple_positive_percentage_other.rs b/tests/generated/block/block_margin_y_simple_positive_percentage_other.rs similarity index 100% rename from tests/generated/block_margin_y_simple_positive_percentage_other.rs rename to tests/generated/block/block_margin_y_simple_positive_percentage_other.rs diff --git a/tests/generated/block_margin_y_simple_positive_percentage_self.rs b/tests/generated/block/block_margin_y_simple_positive_percentage_self.rs similarity index 100% rename from tests/generated/block_margin_y_simple_positive_percentage_self.rs rename to tests/generated/block/block_margin_y_simple_positive_percentage_self.rs diff --git a/tests/generated/block_margin_y_total_collapse.rs b/tests/generated/block/block_margin_y_total_collapse.rs similarity index 100% rename from tests/generated/block_margin_y_total_collapse.rs rename to tests/generated/block/block_margin_y_total_collapse.rs diff --git a/tests/generated/block_margin_y_total_collapse_complex.rs b/tests/generated/block/block_margin_y_total_collapse_complex.rs similarity index 100% rename from tests/generated/block_margin_y_total_collapse_complex.rs rename to tests/generated/block/block_margin_y_total_collapse_complex.rs diff --git a/tests/generated/block_overflow_scrollbars_overriden_by_available_space.rs b/tests/generated/block/block_overflow_scrollbars_overriden_by_available_space.rs similarity index 100% rename from tests/generated/block_overflow_scrollbars_overriden_by_available_space.rs rename to tests/generated/block/block_overflow_scrollbars_overriden_by_available_space.rs diff --git a/tests/generated/block_overflow_scrollbars_overriden_by_max_size.rs b/tests/generated/block/block_overflow_scrollbars_overriden_by_max_size.rs similarity index 100% rename from tests/generated/block_overflow_scrollbars_overriden_by_max_size.rs rename to tests/generated/block/block_overflow_scrollbars_overriden_by_max_size.rs diff --git a/tests/generated/block_overflow_scrollbars_overriden_by_size.rs b/tests/generated/block/block_overflow_scrollbars_overriden_by_size.rs similarity index 100% rename from tests/generated/block_overflow_scrollbars_overriden_by_size.rs rename to tests/generated/block/block_overflow_scrollbars_overriden_by_size.rs diff --git a/tests/generated/block_overflow_scrollbars_take_up_space_both_axis.rs b/tests/generated/block/block_overflow_scrollbars_take_up_space_both_axis.rs similarity index 100% rename from tests/generated/block_overflow_scrollbars_take_up_space_both_axis.rs rename to tests/generated/block/block_overflow_scrollbars_take_up_space_both_axis.rs diff --git a/tests/generated/block_overflow_scrollbars_take_up_space_cross_axis.rs b/tests/generated/block/block_overflow_scrollbars_take_up_space_cross_axis.rs similarity index 100% rename from tests/generated/block_overflow_scrollbars_take_up_space_cross_axis.rs rename to tests/generated/block/block_overflow_scrollbars_take_up_space_cross_axis.rs diff --git a/tests/generated/block_overflow_scrollbars_take_up_space_main_axis.rs b/tests/generated/block/block_overflow_scrollbars_take_up_space_main_axis.rs similarity index 100% rename from tests/generated/block_overflow_scrollbars_take_up_space_main_axis.rs rename to tests/generated/block/block_overflow_scrollbars_take_up_space_main_axis.rs diff --git a/tests/generated/block_padding_border_fixed_size.rs b/tests/generated/block/block_padding_border_fixed_size.rs similarity index 100% rename from tests/generated/block_padding_border_fixed_size.rs rename to tests/generated/block/block_padding_border_fixed_size.rs diff --git a/tests/generated/block_padding_border_intrinsic_size.rs b/tests/generated/block/block_padding_border_intrinsic_size.rs similarity index 100% rename from tests/generated/block_padding_border_intrinsic_size.rs rename to tests/generated/block/block_padding_border_intrinsic_size.rs diff --git a/tests/generated/block_padding_border_overrides_max_size.rs b/tests/generated/block/block_padding_border_overrides_max_size.rs similarity index 100% rename from tests/generated/block_padding_border_overrides_max_size.rs rename to tests/generated/block/block_padding_border_overrides_max_size.rs diff --git a/tests/generated/block_padding_border_overrides_min_size.rs b/tests/generated/block/block_padding_border_overrides_min_size.rs similarity index 100% rename from tests/generated/block_padding_border_overrides_min_size.rs rename to tests/generated/block/block_padding_border_overrides_min_size.rs diff --git a/tests/generated/block_padding_border_overrides_size.rs b/tests/generated/block/block_padding_border_overrides_size.rs similarity index 100% rename from tests/generated/block_padding_border_overrides_size.rs rename to tests/generated/block/block_padding_border_overrides_size.rs diff --git a/tests/generated/block_padding_border_percentage_fixed_size.rs b/tests/generated/block/block_padding_border_percentage_fixed_size.rs similarity index 100% rename from tests/generated/block_padding_border_percentage_fixed_size.rs rename to tests/generated/block/block_padding_border_percentage_fixed_size.rs diff --git a/tests/generated/block_padding_border_percentage_intrinsic_size.rs b/tests/generated/block/block_padding_border_percentage_intrinsic_size.rs similarity index 100% rename from tests/generated/block_padding_border_percentage_intrinsic_size.rs rename to tests/generated/block/block_padding_border_percentage_intrinsic_size.rs diff --git a/tests/generated/block_padding_fixed_size.rs b/tests/generated/block/block_padding_fixed_size.rs similarity index 100% rename from tests/generated/block_padding_fixed_size.rs rename to tests/generated/block/block_padding_fixed_size.rs diff --git a/tests/generated/block_padding_intrinsic_size.rs b/tests/generated/block/block_padding_intrinsic_size.rs similarity index 100% rename from tests/generated/block_padding_intrinsic_size.rs rename to tests/generated/block/block_padding_intrinsic_size.rs diff --git a/tests/generated/block_padding_percentage_fixed_size.rs b/tests/generated/block/block_padding_percentage_fixed_size.rs similarity index 100% rename from tests/generated/block_padding_percentage_fixed_size.rs rename to tests/generated/block/block_padding_percentage_fixed_size.rs diff --git a/tests/generated/block_padding_percentage_intrinsic_size.rs b/tests/generated/block/block_padding_percentage_intrinsic_size.rs similarity index 100% rename from tests/generated/block_padding_percentage_intrinsic_size.rs rename to tests/generated/block/block_padding_percentage_intrinsic_size.rs diff --git a/tests/generated/block/mod.rs b/tests/generated/block/mod.rs new file mode 100644 index 000000000..fbef6c84a --- /dev/null +++ b/tests/generated/block/mod.rs @@ -0,0 +1,188 @@ +mod block_absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset; +mod block_absolute_aspect_ratio_fill_height; +mod block_absolute_aspect_ratio_fill_height_from_inset; +mod block_absolute_aspect_ratio_fill_max_height; +mod block_absolute_aspect_ratio_fill_max_width; +mod block_absolute_aspect_ratio_fill_min_height; +mod block_absolute_aspect_ratio_fill_min_width; +mod block_absolute_aspect_ratio_fill_width; +mod block_absolute_aspect_ratio_fill_width_from_inset; +mod block_absolute_aspect_ratio_height_overrides_inset; +mod block_absolute_aspect_ratio_width_overrides_inset; +mod block_absolute_child_with_margin_x; +mod block_absolute_child_with_margin_y; +mod block_absolute_child_with_max_height; +mod block_absolute_layout_child_order; +mod block_absolute_layout_no_size; +mod block_absolute_layout_percentage_bottom_based_on_parent_height; +mod block_absolute_layout_percentage_height; +mod block_absolute_layout_row_width_height_end_bottom; +mod block_absolute_layout_start_top_end_bottom; +mod block_absolute_layout_width_height_end_bottom; +mod block_absolute_layout_width_height_start_top; +mod block_absolute_layout_width_height_start_top_end_bottom; +mod block_absolute_layout_within_border; +mod block_absolute_margin_auto_bottom_and_top_with_inset; +mod block_absolute_margin_auto_bottom_and_top_without_inset; +mod block_absolute_margin_auto_bottom_with_inset; +mod block_absolute_margin_auto_bottom_without_inset; +mod block_absolute_margin_auto_left_and_right_with_inset; +mod block_absolute_margin_auto_left_and_right_without_inset; +mod block_absolute_margin_auto_left_child_bigger_than_parent_with_inset; +mod block_absolute_margin_auto_left_child_bigger_than_parent_without_inset; +mod block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_with_inset; +mod block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_without_inset; +mod block_absolute_margin_auto_left_right_child_bigger_than_parent_with_inset; +mod block_absolute_margin_auto_left_right_child_bigger_than_parent_without_inset; +mod block_absolute_margin_auto_left_with_inset; +mod block_absolute_margin_auto_left_without_inset; +mod block_absolute_margin_auto_mutiple_children_with_inset; +mod block_absolute_margin_auto_mutiple_children_without_inset; +mod block_absolute_margin_auto_right_with_inset; +mod block_absolute_margin_auto_right_without_inset; +mod block_absolute_margin_auto_top_with_inset; +mod block_absolute_margin_auto_top_without_inset; +mod block_absolute_margin_bottom_left_with_inset; +mod block_absolute_margin_bottom_left_without_inset; +mod block_absolute_minmax_bottom_right_max; +mod block_absolute_minmax_bottom_right_min_max; +mod block_absolute_minmax_bottom_right_min_max_preferred; +mod block_absolute_minmax_top_left_bottom_right_max; +mod block_absolute_minmax_top_left_bottom_right_min_max; +mod block_absolute_no_styles; +mod block_absolute_padding_border_overrides_max_size; +mod block_absolute_padding_border_overrides_size; +mod block_align_baseline_child; +mod block_align_baseline_child_margin; +mod block_align_baseline_child_margin_percent; +mod block_align_baseline_child_padding; +mod block_align_baseline_child_top; +mod block_align_baseline_child_top2; +mod block_align_baseline_double_nested_child; +mod block_aspect_ratio_fill_height; +mod block_aspect_ratio_fill_max_height; +mod block_aspect_ratio_fill_max_width; +mod block_aspect_ratio_fill_min_height; +mod block_aspect_ratio_fill_min_width; +mod block_aspect_ratio_fill_width; +mod block_basic; +mod block_border_fixed_size; +mod block_border_intrinsic_size; +mod block_border_percentage_fixed_size; +mod block_border_percentage_intrinsic_size; +mod block_display_none; +mod block_display_none_with_child; +mod block_display_none_with_inset; +mod block_display_none_with_margin; +mod block_display_none_with_position_absolute; +mod block_inset_fixed; +mod block_inset_percentage; +mod block_intrinsic_width; +mod block_margin_auto_bottom; +mod block_margin_auto_bottom_and_top; +mod block_margin_auto_left; +mod block_margin_auto_left_and_right; +mod block_margin_auto_left_child_bigger_than_parent; +mod block_margin_auto_left_fix_right_child_bigger_than_parent; +mod block_margin_auto_left_right_child_bigger_than_parent; +mod block_margin_auto_mutiple_children; +mod block_margin_auto_right; +mod block_margin_auto_top; +mod block_margin_x_fixed_auto_bottom; +mod block_margin_x_fixed_auto_left; +mod block_margin_x_fixed_auto_left_and_right; +mod block_margin_x_fixed_auto_right; +mod block_margin_x_fixed_auto_top; +mod block_margin_x_fixed_size_negative; +mod block_margin_x_fixed_size_positive; +mod block_margin_x_intrinsic_size_negative; +mod block_margin_x_intrinsic_size_positive; +mod block_margin_x_percentage_fixed_size_negative; +mod block_margin_x_percentage_fixed_size_positive; +mod block_margin_x_percentage_intrinsic_size_other_negative; +mod block_margin_x_percentage_intrinsic_size_other_positive; +mod block_margin_x_percentage_intrinsic_size_self_negative; +mod block_margin_x_percentage_intrinsic_size_self_positive; +mod block_margin_y_collapse_complex; +mod block_margin_y_collapse_through_blocked_by_aspect_ratio; +mod block_margin_y_collapse_through_blocked_by_border_bottom; +mod block_margin_y_collapse_through_blocked_by_border_top; +mod block_margin_y_collapse_through_blocked_by_height; +mod block_margin_y_collapse_through_blocked_by_line_box; +mod block_margin_y_collapse_through_blocked_by_line_box_with_height_zero; +mod block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero; +mod block_margin_y_collapse_through_blocked_by_min_height; +mod block_margin_y_collapse_through_blocked_by_overflow_x_hidden; +mod block_margin_y_collapse_through_blocked_by_overflow_x_scroll; +mod block_margin_y_collapse_through_blocked_by_overflow_y_hidden; +mod block_margin_y_collapse_through_blocked_by_overflow_y_scroll; +mod block_margin_y_collapse_through_blocked_by_padding_bottom; +mod block_margin_y_collapse_through_blocked_by_padding_top; +mod block_margin_y_collapse_through_negative; +mod block_margin_y_collapse_through_positive; +mod block_margin_y_collapse_through_positive_and_negative; +mod block_margin_y_collapse_through_with_absolute_child; +mod block_margin_y_first_child_collapse_blocked_by_border_top; +mod block_margin_y_first_child_collapse_blocked_by_overflow_x_hidden; +mod block_margin_y_first_child_collapse_blocked_by_overflow_x_scroll; +mod block_margin_y_first_child_collapse_blocked_by_overflow_y_hidden; +mod block_margin_y_first_child_collapse_blocked_by_overflow_y_scroll; +mod block_margin_y_first_child_collapse_blocked_by_padding_top; +mod block_margin_y_first_child_collapse_negative_equal; +mod block_margin_y_first_child_collapse_negative_parent_larger; +mod block_margin_y_first_child_collapse_negative_parent_smaller; +mod block_margin_y_first_child_collapse_not_blocked_by_border_bottom; +mod block_margin_y_first_child_collapse_not_blocked_by_padding_bottom; +mod block_margin_y_first_child_collapse_positive_and_negative; +mod block_margin_y_first_child_collapse_positive_equal; +mod block_margin_y_first_child_collapse_positive_parent_larger; +mod block_margin_y_first_child_collapse_positive_parent_smaller; +mod block_margin_y_first_granchild_collapse_positive_and_negative; +mod block_margin_y_first_granchild_collapse_positive_equal; +mod block_margin_y_last_child_collapse_blocked_by_border_bottom; +mod block_margin_y_last_child_collapse_blocked_by_overflow_x_hidden; +mod block_margin_y_last_child_collapse_blocked_by_overflow_x_scroll; +mod block_margin_y_last_child_collapse_blocked_by_overflow_y_hidden; +mod block_margin_y_last_child_collapse_blocked_by_overflow_y_scroll; +mod block_margin_y_last_child_collapse_blocked_by_padding_bottom; +mod block_margin_y_last_child_collapse_negative_equal; +mod block_margin_y_last_child_collapse_negative_parent_larger; +mod block_margin_y_last_child_collapse_negative_parent_smaller; +mod block_margin_y_last_child_collapse_not_blocked_by_border_top; +mod block_margin_y_last_child_collapse_not_blocked_by_padding_top; +mod block_margin_y_last_child_collapse_positive_and_negative; +mod block_margin_y_last_child_collapse_positive_equal; +mod block_margin_y_last_child_collapse_positive_parent_larger; +mod block_margin_y_last_child_collapse_positive_parent_smaller; +mod block_margin_y_last_granchild_collapse_positive_equal; +mod block_margin_y_sibling_collapse_negative; +mod block_margin_y_sibling_collapse_negative_percentage; +mod block_margin_y_sibling_collapse_positive; +mod block_margin_y_sibling_collapse_positive_and_negative; +mod block_margin_y_sibling_collapse_positive_and_negative_percentage; +mod block_margin_y_sibling_collapse_positive_percentage; +mod block_margin_y_simple_negative; +mod block_margin_y_simple_negative_percentage_other; +mod block_margin_y_simple_negative_percentage_self; +mod block_margin_y_simple_positive; +mod block_margin_y_simple_positive_percentage_other; +mod block_margin_y_simple_positive_percentage_self; +mod block_margin_y_total_collapse; +mod block_margin_y_total_collapse_complex; +mod block_overflow_scrollbars_overriden_by_available_space; +mod block_overflow_scrollbars_overriden_by_max_size; +mod block_overflow_scrollbars_overriden_by_size; +mod block_overflow_scrollbars_take_up_space_both_axis; +mod block_overflow_scrollbars_take_up_space_cross_axis; +mod block_overflow_scrollbars_take_up_space_main_axis; +mod block_padding_border_fixed_size; +mod block_padding_border_intrinsic_size; +mod block_padding_border_overrides_max_size; +mod block_padding_border_overrides_min_size; +mod block_padding_border_overrides_size; +mod block_padding_border_percentage_fixed_size; +mod block_padding_border_percentage_intrinsic_size; +mod block_padding_fixed_size; +mod block_padding_intrinsic_size; +mod block_padding_percentage_fixed_size; +mod block_padding_percentage_intrinsic_size; diff --git a/tests/generated/blockflex_block_in_flex_column.rs b/tests/generated/blockflex/blockflex_block_in_flex_column.rs similarity index 100% rename from tests/generated/blockflex_block_in_flex_column.rs rename to tests/generated/blockflex/blockflex_block_in_flex_column.rs diff --git a/tests/generated/blockflex_block_in_flex_row.rs b/tests/generated/blockflex/blockflex_block_in_flex_row.rs similarity index 100% rename from tests/generated/blockflex_block_in_flex_row.rs rename to tests/generated/blockflex/blockflex_block_in_flex_row.rs diff --git a/tests/generated/blockflex_flex_in_block.rs b/tests/generated/blockflex/blockflex_flex_in_block.rs similarity index 100% rename from tests/generated/blockflex_flex_in_block.rs rename to tests/generated/blockflex/blockflex_flex_in_block.rs diff --git a/tests/generated/blockflex_margin_y_collapse_through_blocked_by_flex.rs b/tests/generated/blockflex/blockflex_margin_y_collapse_through_blocked_by_flex.rs similarity index 100% rename from tests/generated/blockflex_margin_y_collapse_through_blocked_by_flex.rs rename to tests/generated/blockflex/blockflex_margin_y_collapse_through_blocked_by_flex.rs diff --git a/tests/generated/blockflex_margin_y_first_child_collapse_blocked_by_flex.rs b/tests/generated/blockflex/blockflex_margin_y_first_child_collapse_blocked_by_flex.rs similarity index 100% rename from tests/generated/blockflex_margin_y_first_child_collapse_blocked_by_flex.rs rename to tests/generated/blockflex/blockflex_margin_y_first_child_collapse_blocked_by_flex.rs diff --git a/tests/generated/blockflex_margin_y_last_child_collapse_blocked_by_flex.rs b/tests/generated/blockflex/blockflex_margin_y_last_child_collapse_blocked_by_flex.rs similarity index 100% rename from tests/generated/blockflex_margin_y_last_child_collapse_blocked_by_flex.rs rename to tests/generated/blockflex/blockflex_margin_y_last_child_collapse_blocked_by_flex.rs diff --git a/tests/generated/blockflex_overflow_hidden.rs b/tests/generated/blockflex/blockflex_overflow_hidden.rs similarity index 93% rename from tests/generated/blockflex_overflow_hidden.rs rename to tests/generated/blockflex/blockflex_overflow_hidden.rs index 0a897d0a0..2584102e8 100644 --- a/tests/generated/blockflex_overflow_hidden.rs +++ b/tests/generated/blockflex/blockflex_overflow_hidden.rs @@ -17,11 +17,11 @@ fn blockflex_overflow_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -32,11 +32,11 @@ fn blockflex_overflow_hidden() { taffy::style::Style { display: taffy::style::Display::Block, flex_grow: 1f32, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/blockflex/mod.rs b/tests/generated/blockflex/mod.rs new file mode 100644 index 000000000..227f32731 --- /dev/null +++ b/tests/generated/blockflex/mod.rs @@ -0,0 +1,7 @@ +mod blockflex_block_in_flex_column; +mod blockflex_block_in_flex_row; +mod blockflex_flex_in_block; +mod blockflex_margin_y_collapse_through_blocked_by_flex; +mod blockflex_margin_y_first_child_collapse_blocked_by_flex; +mod blockflex_margin_y_last_child_collapse_blocked_by_flex; +mod blockflex_overflow_hidden; diff --git a/tests/generated/blockgrid_block_in_grid_auto.rs b/tests/generated/blockgrid/blockgrid_block_in_grid_auto.rs similarity index 95% rename from tests/generated/blockgrid_block_in_grid_auto.rs rename to tests/generated/blockgrid/blockgrid_block_in_grid_auto.rs index 22e5bbce8..522f91f8e 100644 --- a/tests/generated/blockgrid_block_in_grid_auto.rs +++ b/tests/generated/blockgrid/blockgrid_block_in_grid_auto.rs @@ -8,11 +8,11 @@ fn blockgrid_block_in_grid_auto() { taffy::style::Style { display: taffy::style::Display::Block, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/blockgrid_block_in_grid_fixed_fit_content_larger.rs b/tests/generated/blockgrid/blockgrid_block_in_grid_fixed_fit_content_larger.rs similarity index 95% rename from tests/generated/blockgrid_block_in_grid_fixed_fit_content_larger.rs rename to tests/generated/blockgrid/blockgrid_block_in_grid_fixed_fit_content_larger.rs index c3eaed433..dccd65761 100644 --- a/tests/generated/blockgrid_block_in_grid_fixed_fit_content_larger.rs +++ b/tests/generated/blockgrid/blockgrid_block_in_grid_fixed_fit_content_larger.rs @@ -8,11 +8,11 @@ fn blockgrid_block_in_grid_fixed_fit_content_larger() { taffy::style::Style { display: taffy::style::Display::Block, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/blockgrid_block_in_grid_fixed_fit_content_middle.rs b/tests/generated/blockgrid/blockgrid_block_in_grid_fixed_fit_content_middle.rs similarity index 95% rename from tests/generated/blockgrid_block_in_grid_fixed_fit_content_middle.rs rename to tests/generated/blockgrid/blockgrid_block_in_grid_fixed_fit_content_middle.rs index 2c66cab15..7d4401405 100644 --- a/tests/generated/blockgrid_block_in_grid_fixed_fit_content_middle.rs +++ b/tests/generated/blockgrid/blockgrid_block_in_grid_fixed_fit_content_middle.rs @@ -8,11 +8,11 @@ fn blockgrid_block_in_grid_fixed_fit_content_middle() { taffy::style::Style { display: taffy::style::Display::Block, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/blockgrid_block_in_grid_fixed_fit_content_smaller.rs b/tests/generated/blockgrid/blockgrid_block_in_grid_fixed_fit_content_smaller.rs similarity index 95% rename from tests/generated/blockgrid_block_in_grid_fixed_fit_content_smaller.rs rename to tests/generated/blockgrid/blockgrid_block_in_grid_fixed_fit_content_smaller.rs index 70c5f7f42..a1972a3ba 100644 --- a/tests/generated/blockgrid_block_in_grid_fixed_fit_content_smaller.rs +++ b/tests/generated/blockgrid/blockgrid_block_in_grid_fixed_fit_content_smaller.rs @@ -8,11 +8,11 @@ fn blockgrid_block_in_grid_fixed_fit_content_smaller() { taffy::style::Style { display: taffy::style::Display::Block, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/blockgrid_block_in_grid_fixed_larger.rs b/tests/generated/blockgrid/blockgrid_block_in_grid_fixed_larger.rs similarity index 95% rename from tests/generated/blockgrid_block_in_grid_fixed_larger.rs rename to tests/generated/blockgrid/blockgrid_block_in_grid_fixed_larger.rs index 82b8be720..6be0619e9 100644 --- a/tests/generated/blockgrid_block_in_grid_fixed_larger.rs +++ b/tests/generated/blockgrid/blockgrid_block_in_grid_fixed_larger.rs @@ -8,11 +8,11 @@ fn blockgrid_block_in_grid_fixed_larger() { taffy::style::Style { display: taffy::style::Display::Block, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/blockgrid_block_in_grid_fixed_middle.rs b/tests/generated/blockgrid/blockgrid_block_in_grid_fixed_middle.rs similarity index 95% rename from tests/generated/blockgrid_block_in_grid_fixed_middle.rs rename to tests/generated/blockgrid/blockgrid_block_in_grid_fixed_middle.rs index df6bb665c..a12902ddc 100644 --- a/tests/generated/blockgrid_block_in_grid_fixed_middle.rs +++ b/tests/generated/blockgrid/blockgrid_block_in_grid_fixed_middle.rs @@ -8,11 +8,11 @@ fn blockgrid_block_in_grid_fixed_middle() { taffy::style::Style { display: taffy::style::Display::Block, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/blockgrid_block_in_grid_fixed_smaller.rs b/tests/generated/blockgrid/blockgrid_block_in_grid_fixed_smaller.rs similarity index 95% rename from tests/generated/blockgrid_block_in_grid_fixed_smaller.rs rename to tests/generated/blockgrid/blockgrid_block_in_grid_fixed_smaller.rs index 166f95e01..d7c36386e 100644 --- a/tests/generated/blockgrid_block_in_grid_fixed_smaller.rs +++ b/tests/generated/blockgrid/blockgrid_block_in_grid_fixed_smaller.rs @@ -8,11 +8,11 @@ fn blockgrid_block_in_grid_fixed_smaller() { taffy::style::Style { display: taffy::style::Display::Block, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/blockgrid_block_in_grid_fr.rs b/tests/generated/blockgrid/blockgrid_block_in_grid_fr.rs similarity index 95% rename from tests/generated/blockgrid_block_in_grid_fr.rs rename to tests/generated/blockgrid/blockgrid_block_in_grid_fr.rs index 5317762f3..b3a1b973a 100644 --- a/tests/generated/blockgrid_block_in_grid_fr.rs +++ b/tests/generated/blockgrid/blockgrid_block_in_grid_fr.rs @@ -8,11 +8,11 @@ fn blockgrid_block_in_grid_fr() { taffy::style::Style { display: taffy::style::Display::Block, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/blockgrid_block_in_grid_max_content.rs b/tests/generated/blockgrid/blockgrid_block_in_grid_max_content.rs similarity index 95% rename from tests/generated/blockgrid_block_in_grid_max_content.rs rename to tests/generated/blockgrid/blockgrid_block_in_grid_max_content.rs index a3c997d4b..57f8619fb 100644 --- a/tests/generated/blockgrid_block_in_grid_max_content.rs +++ b/tests/generated/blockgrid/blockgrid_block_in_grid_max_content.rs @@ -8,11 +8,11 @@ fn blockgrid_block_in_grid_max_content() { taffy::style::Style { display: taffy::style::Display::Block, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/blockgrid_block_in_grid_min_content.rs b/tests/generated/blockgrid/blockgrid_block_in_grid_min_content.rs similarity index 95% rename from tests/generated/blockgrid_block_in_grid_min_content.rs rename to tests/generated/blockgrid/blockgrid_block_in_grid_min_content.rs index b0a7cd8b3..6ff829b2b 100644 --- a/tests/generated/blockgrid_block_in_grid_min_content.rs +++ b/tests/generated/blockgrid/blockgrid_block_in_grid_min_content.rs @@ -8,11 +8,11 @@ fn blockgrid_block_in_grid_min_content() { taffy::style::Style { display: taffy::style::Display::Block, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/blockgrid_grid_in_block.rs b/tests/generated/blockgrid/blockgrid_grid_in_block.rs similarity index 100% rename from tests/generated/blockgrid_grid_in_block.rs rename to tests/generated/blockgrid/blockgrid_grid_in_block.rs diff --git a/tests/generated/blockgrid_margin_y_collapse_through_blocked_by_grid.rs b/tests/generated/blockgrid/blockgrid_margin_y_collapse_through_blocked_by_grid.rs similarity index 100% rename from tests/generated/blockgrid_margin_y_collapse_through_blocked_by_grid.rs rename to tests/generated/blockgrid/blockgrid_margin_y_collapse_through_blocked_by_grid.rs diff --git a/tests/generated/blockgrid_margin_y_first_child_collapse_blocked_by_grid.rs b/tests/generated/blockgrid/blockgrid_margin_y_first_child_collapse_blocked_by_grid.rs similarity index 100% rename from tests/generated/blockgrid_margin_y_first_child_collapse_blocked_by_grid.rs rename to tests/generated/blockgrid/blockgrid_margin_y_first_child_collapse_blocked_by_grid.rs diff --git a/tests/generated/blockgrid_margin_y_last_child_collapse_blocked_by_grid.rs b/tests/generated/blockgrid/blockgrid_margin_y_last_child_collapse_blocked_by_grid.rs similarity index 100% rename from tests/generated/blockgrid_margin_y_last_child_collapse_blocked_by_grid.rs rename to tests/generated/blockgrid/blockgrid_margin_y_last_child_collapse_blocked_by_grid.rs diff --git a/tests/generated/blockgrid/mod.rs b/tests/generated/blockgrid/mod.rs new file mode 100644 index 000000000..cb082eb8b --- /dev/null +++ b/tests/generated/blockgrid/mod.rs @@ -0,0 +1,14 @@ +mod blockgrid_block_in_grid_auto; +mod blockgrid_block_in_grid_fixed_fit_content_larger; +mod blockgrid_block_in_grid_fixed_fit_content_middle; +mod blockgrid_block_in_grid_fixed_fit_content_smaller; +mod blockgrid_block_in_grid_fixed_larger; +mod blockgrid_block_in_grid_fixed_middle; +mod blockgrid_block_in_grid_fixed_smaller; +mod blockgrid_block_in_grid_fr; +mod blockgrid_block_in_grid_max_content; +mod blockgrid_block_in_grid_min_content; +mod blockgrid_grid_in_block; +mod blockgrid_margin_y_collapse_through_blocked_by_grid; +mod blockgrid_margin_y_first_child_collapse_blocked_by_grid; +mod blockgrid_margin_y_last_child_collapse_blocked_by_grid; diff --git a/tests/generated/absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.rs b/tests/generated/flex/absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.rs similarity index 100% rename from tests/generated/absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.rs rename to tests/generated/flex/absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset.rs diff --git a/tests/generated/absolute_aspect_ratio_fill_height.rs b/tests/generated/flex/absolute_aspect_ratio_fill_height.rs similarity index 100% rename from tests/generated/absolute_aspect_ratio_fill_height.rs rename to tests/generated/flex/absolute_aspect_ratio_fill_height.rs diff --git a/tests/generated/absolute_aspect_ratio_fill_height_from_inset.rs b/tests/generated/flex/absolute_aspect_ratio_fill_height_from_inset.rs similarity index 100% rename from tests/generated/absolute_aspect_ratio_fill_height_from_inset.rs rename to tests/generated/flex/absolute_aspect_ratio_fill_height_from_inset.rs diff --git a/tests/generated/absolute_aspect_ratio_fill_max_height.rs b/tests/generated/flex/absolute_aspect_ratio_fill_max_height.rs similarity index 90% rename from tests/generated/absolute_aspect_ratio_fill_max_height.rs rename to tests/generated/flex/absolute_aspect_ratio_fill_max_height.rs index 77a233bdd..e15545d3f 100644 --- a/tests/generated/absolute_aspect_ratio_fill_max_height.rs +++ b/tests/generated/flex/absolute_aspect_ratio_fill_max_height.rs @@ -3,7 +3,7 @@ fn absolute_aspect_ratio_fill_max_height() { #[allow(unused_imports)] use taffy::{prelude::*, tree::Layout}; let mut taffy = taffy::Taffy::new(); - let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { position : taffy :: style :: Position :: Absolute , max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (50f32) , height : auto () , } , aspect_ratio : Some (3f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH" ; super :: measure_standard_text (known_dimensions , available_space , TEXT , super :: WritingMode :: Horizontal , Some (3f32)) }) ,) . unwrap () ; + let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { position : taffy :: style :: Position :: Absolute , max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (50f32) , height : auto () , } , aspect_ratio : Some (3f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH" ; crate :: generated :: measure_standard_text (known_dimensions , available_space , TEXT , crate :: generated :: WritingMode :: Horizontal , Some (3f32)) }) ,) . unwrap () ; let node = taffy .new_with_children( taffy::style::Style { diff --git a/tests/generated/absolute_aspect_ratio_fill_max_width.rs b/tests/generated/flex/absolute_aspect_ratio_fill_max_width.rs similarity index 90% rename from tests/generated/absolute_aspect_ratio_fill_max_width.rs rename to tests/generated/flex/absolute_aspect_ratio_fill_max_width.rs index 16600b4c1..0253062c5 100644 --- a/tests/generated/absolute_aspect_ratio_fill_max_width.rs +++ b/tests/generated/flex/absolute_aspect_ratio_fill_max_width.rs @@ -3,7 +3,7 @@ fn absolute_aspect_ratio_fill_max_width() { #[allow(unused_imports)] use taffy::{prelude::*, tree::Layout}; let mut taffy = taffy::Taffy::new(); - let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { position : taffy :: style :: Position :: Absolute , max_size : taffy :: geometry :: Size { width : auto () , height : taffy :: style :: Dimension :: Length (50f32) , } , aspect_ratio : Some (0.5f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH" ; super :: measure_standard_text (known_dimensions , available_space , TEXT , super :: WritingMode :: Horizontal , Some (0.5f32)) }) ,) . unwrap () ; + let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { position : taffy :: style :: Position :: Absolute , max_size : taffy :: geometry :: Size { width : auto () , height : taffy :: style :: Dimension :: Length (50f32) , } , aspect_ratio : Some (0.5f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH" ; crate :: generated :: measure_standard_text (known_dimensions , available_space , TEXT , crate :: generated :: WritingMode :: Horizontal , Some (0.5f32)) }) ,) . unwrap () ; let node = taffy .new_with_children( taffy::style::Style { diff --git a/tests/generated/absolute_aspect_ratio_fill_min_height.rs b/tests/generated/flex/absolute_aspect_ratio_fill_min_height.rs similarity index 100% rename from tests/generated/absolute_aspect_ratio_fill_min_height.rs rename to tests/generated/flex/absolute_aspect_ratio_fill_min_height.rs diff --git a/tests/generated/absolute_aspect_ratio_fill_min_width.rs b/tests/generated/flex/absolute_aspect_ratio_fill_min_width.rs similarity index 100% rename from tests/generated/absolute_aspect_ratio_fill_min_width.rs rename to tests/generated/flex/absolute_aspect_ratio_fill_min_width.rs diff --git a/tests/generated/absolute_aspect_ratio_fill_width.rs b/tests/generated/flex/absolute_aspect_ratio_fill_width.rs similarity index 100% rename from tests/generated/absolute_aspect_ratio_fill_width.rs rename to tests/generated/flex/absolute_aspect_ratio_fill_width.rs diff --git a/tests/generated/absolute_aspect_ratio_fill_width_from_inset.rs b/tests/generated/flex/absolute_aspect_ratio_fill_width_from_inset.rs similarity index 100% rename from tests/generated/absolute_aspect_ratio_fill_width_from_inset.rs rename to tests/generated/flex/absolute_aspect_ratio_fill_width_from_inset.rs diff --git a/tests/generated/absolute_aspect_ratio_height_overrides_inset.rs b/tests/generated/flex/absolute_aspect_ratio_height_overrides_inset.rs similarity index 100% rename from tests/generated/absolute_aspect_ratio_height_overrides_inset.rs rename to tests/generated/flex/absolute_aspect_ratio_height_overrides_inset.rs diff --git a/tests/generated/absolute_aspect_ratio_width_overrides_inset.rs b/tests/generated/flex/absolute_aspect_ratio_width_overrides_inset.rs similarity index 100% rename from tests/generated/absolute_aspect_ratio_width_overrides_inset.rs rename to tests/generated/flex/absolute_aspect_ratio_width_overrides_inset.rs diff --git a/tests/generated/absolute_child_with_cross_margin.rs b/tests/generated/flex/absolute_child_with_cross_margin.rs similarity index 97% rename from tests/generated/absolute_child_with_cross_margin.rs rename to tests/generated/flex/absolute_child_with_cross_margin.rs index e2e5129c0..4887d6252 100644 --- a/tests/generated/absolute_child_with_cross_margin.rs +++ b/tests/generated/flex/absolute_child_with_cross_margin.rs @@ -34,11 +34,11 @@ fn absolute_child_with_cross_margin() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "\n "; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/absolute_child_with_main_margin.rs b/tests/generated/flex/absolute_child_with_main_margin.rs similarity index 100% rename from tests/generated/absolute_child_with_main_margin.rs rename to tests/generated/flex/absolute_child_with_main_margin.rs diff --git a/tests/generated/absolute_child_with_max_height.rs b/tests/generated/flex/absolute_child_with_max_height.rs similarity index 100% rename from tests/generated/absolute_child_with_max_height.rs rename to tests/generated/flex/absolute_child_with_max_height.rs diff --git a/tests/generated/absolute_child_with_max_height_larger_shrinkable_grandchild.rs b/tests/generated/flex/absolute_child_with_max_height_larger_shrinkable_grandchild.rs similarity index 100% rename from tests/generated/absolute_child_with_max_height_larger_shrinkable_grandchild.rs rename to tests/generated/flex/absolute_child_with_max_height_larger_shrinkable_grandchild.rs diff --git a/tests/generated/absolute_layout_align_items_and_justify_content_center.rs b/tests/generated/flex/absolute_layout_align_items_and_justify_content_center.rs similarity index 100% rename from tests/generated/absolute_layout_align_items_and_justify_content_center.rs rename to tests/generated/flex/absolute_layout_align_items_and_justify_content_center.rs diff --git a/tests/generated/absolute_layout_align_items_and_justify_content_center_and_bottom_position.rs b/tests/generated/flex/absolute_layout_align_items_and_justify_content_center_and_bottom_position.rs similarity index 100% rename from tests/generated/absolute_layout_align_items_and_justify_content_center_and_bottom_position.rs rename to tests/generated/flex/absolute_layout_align_items_and_justify_content_center_and_bottom_position.rs diff --git a/tests/generated/absolute_layout_align_items_and_justify_content_center_and_left_position.rs b/tests/generated/flex/absolute_layout_align_items_and_justify_content_center_and_left_position.rs similarity index 100% rename from tests/generated/absolute_layout_align_items_and_justify_content_center_and_left_position.rs rename to tests/generated/flex/absolute_layout_align_items_and_justify_content_center_and_left_position.rs diff --git a/tests/generated/absolute_layout_align_items_and_justify_content_center_and_right_position.rs b/tests/generated/flex/absolute_layout_align_items_and_justify_content_center_and_right_position.rs similarity index 100% rename from tests/generated/absolute_layout_align_items_and_justify_content_center_and_right_position.rs rename to tests/generated/flex/absolute_layout_align_items_and_justify_content_center_and_right_position.rs diff --git a/tests/generated/absolute_layout_align_items_and_justify_content_center_and_top_position.rs b/tests/generated/flex/absolute_layout_align_items_and_justify_content_center_and_top_position.rs similarity index 100% rename from tests/generated/absolute_layout_align_items_and_justify_content_center_and_top_position.rs rename to tests/generated/flex/absolute_layout_align_items_and_justify_content_center_and_top_position.rs diff --git a/tests/generated/absolute_layout_align_items_and_justify_content_flex_end.rs b/tests/generated/flex/absolute_layout_align_items_and_justify_content_flex_end.rs similarity index 100% rename from tests/generated/absolute_layout_align_items_and_justify_content_flex_end.rs rename to tests/generated/flex/absolute_layout_align_items_and_justify_content_flex_end.rs diff --git a/tests/generated/absolute_layout_align_items_center.rs b/tests/generated/flex/absolute_layout_align_items_center.rs similarity index 100% rename from tests/generated/absolute_layout_align_items_center.rs rename to tests/generated/flex/absolute_layout_align_items_center.rs diff --git a/tests/generated/absolute_layout_align_items_center_on_child_only.rs b/tests/generated/flex/absolute_layout_align_items_center_on_child_only.rs similarity index 100% rename from tests/generated/absolute_layout_align_items_center_on_child_only.rs rename to tests/generated/flex/absolute_layout_align_items_center_on_child_only.rs diff --git a/tests/generated/absolute_layout_child_order.rs b/tests/generated/flex/absolute_layout_child_order.rs similarity index 100% rename from tests/generated/absolute_layout_child_order.rs rename to tests/generated/flex/absolute_layout_child_order.rs diff --git a/tests/generated/absolute_layout_in_wrap_reverse_column_container.rs b/tests/generated/flex/absolute_layout_in_wrap_reverse_column_container.rs similarity index 100% rename from tests/generated/absolute_layout_in_wrap_reverse_column_container.rs rename to tests/generated/flex/absolute_layout_in_wrap_reverse_column_container.rs diff --git a/tests/generated/absolute_layout_in_wrap_reverse_column_container_flex_end.rs b/tests/generated/flex/absolute_layout_in_wrap_reverse_column_container_flex_end.rs similarity index 100% rename from tests/generated/absolute_layout_in_wrap_reverse_column_container_flex_end.rs rename to tests/generated/flex/absolute_layout_in_wrap_reverse_column_container_flex_end.rs diff --git a/tests/generated/absolute_layout_in_wrap_reverse_row_container.rs b/tests/generated/flex/absolute_layout_in_wrap_reverse_row_container.rs similarity index 100% rename from tests/generated/absolute_layout_in_wrap_reverse_row_container.rs rename to tests/generated/flex/absolute_layout_in_wrap_reverse_row_container.rs diff --git a/tests/generated/absolute_layout_in_wrap_reverse_row_container_flex_end.rs b/tests/generated/flex/absolute_layout_in_wrap_reverse_row_container_flex_end.rs similarity index 100% rename from tests/generated/absolute_layout_in_wrap_reverse_row_container_flex_end.rs rename to tests/generated/flex/absolute_layout_in_wrap_reverse_row_container_flex_end.rs diff --git a/tests/generated/absolute_layout_justify_content_center.rs b/tests/generated/flex/absolute_layout_justify_content_center.rs similarity index 100% rename from tests/generated/absolute_layout_justify_content_center.rs rename to tests/generated/flex/absolute_layout_justify_content_center.rs diff --git a/tests/generated/absolute_layout_no_size.rs b/tests/generated/flex/absolute_layout_no_size.rs similarity index 100% rename from tests/generated/absolute_layout_no_size.rs rename to tests/generated/flex/absolute_layout_no_size.rs diff --git a/tests/generated/absolute_layout_percentage_bottom_based_on_parent_height.rs b/tests/generated/flex/absolute_layout_percentage_bottom_based_on_parent_height.rs similarity index 100% rename from tests/generated/absolute_layout_percentage_bottom_based_on_parent_height.rs rename to tests/generated/flex/absolute_layout_percentage_bottom_based_on_parent_height.rs diff --git a/tests/generated/absolute_layout_percentage_height.rs b/tests/generated/flex/absolute_layout_percentage_height.rs similarity index 100% rename from tests/generated/absolute_layout_percentage_height.rs rename to tests/generated/flex/absolute_layout_percentage_height.rs diff --git a/tests/generated/absolute_layout_row_width_height_end_bottom.rs b/tests/generated/flex/absolute_layout_row_width_height_end_bottom.rs similarity index 100% rename from tests/generated/absolute_layout_row_width_height_end_bottom.rs rename to tests/generated/flex/absolute_layout_row_width_height_end_bottom.rs diff --git a/tests/generated/absolute_layout_start_top_end_bottom.rs b/tests/generated/flex/absolute_layout_start_top_end_bottom.rs similarity index 100% rename from tests/generated/absolute_layout_start_top_end_bottom.rs rename to tests/generated/flex/absolute_layout_start_top_end_bottom.rs diff --git a/tests/generated/absolute_layout_width_height_end_bottom.rs b/tests/generated/flex/absolute_layout_width_height_end_bottom.rs similarity index 100% rename from tests/generated/absolute_layout_width_height_end_bottom.rs rename to tests/generated/flex/absolute_layout_width_height_end_bottom.rs diff --git a/tests/generated/absolute_layout_width_height_start_top.rs b/tests/generated/flex/absolute_layout_width_height_start_top.rs similarity index 100% rename from tests/generated/absolute_layout_width_height_start_top.rs rename to tests/generated/flex/absolute_layout_width_height_start_top.rs diff --git a/tests/generated/absolute_layout_width_height_start_top_end_bottom.rs b/tests/generated/flex/absolute_layout_width_height_start_top_end_bottom.rs similarity index 100% rename from tests/generated/absolute_layout_width_height_start_top_end_bottom.rs rename to tests/generated/flex/absolute_layout_width_height_start_top_end_bottom.rs diff --git a/tests/generated/absolute_layout_within_border.rs b/tests/generated/flex/absolute_layout_within_border.rs similarity index 100% rename from tests/generated/absolute_layout_within_border.rs rename to tests/generated/flex/absolute_layout_within_border.rs diff --git a/tests/generated/absolute_margin_bottom_left.rs b/tests/generated/flex/absolute_margin_bottom_left.rs similarity index 100% rename from tests/generated/absolute_margin_bottom_left.rs rename to tests/generated/flex/absolute_margin_bottom_left.rs diff --git a/tests/generated/absolute_minmax_bottom_right_max.rs b/tests/generated/flex/absolute_minmax_bottom_right_max.rs similarity index 100% rename from tests/generated/absolute_minmax_bottom_right_max.rs rename to tests/generated/flex/absolute_minmax_bottom_right_max.rs diff --git a/tests/generated/absolute_minmax_bottom_right_min_max.rs b/tests/generated/flex/absolute_minmax_bottom_right_min_max.rs similarity index 100% rename from tests/generated/absolute_minmax_bottom_right_min_max.rs rename to tests/generated/flex/absolute_minmax_bottom_right_min_max.rs diff --git a/tests/generated/absolute_minmax_bottom_right_min_max_preferred.rs b/tests/generated/flex/absolute_minmax_bottom_right_min_max_preferred.rs similarity index 100% rename from tests/generated/absolute_minmax_bottom_right_min_max_preferred.rs rename to tests/generated/flex/absolute_minmax_bottom_right_min_max_preferred.rs diff --git a/tests/generated/absolute_minmax_top_left_bottom_right_max.rs b/tests/generated/flex/absolute_minmax_top_left_bottom_right_max.rs similarity index 100% rename from tests/generated/absolute_minmax_top_left_bottom_right_max.rs rename to tests/generated/flex/absolute_minmax_top_left_bottom_right_max.rs diff --git a/tests/generated/absolute_minmax_top_left_bottom_right_min_max.rs b/tests/generated/flex/absolute_minmax_top_left_bottom_right_min_max.rs similarity index 100% rename from tests/generated/absolute_minmax_top_left_bottom_right_min_max.rs rename to tests/generated/flex/absolute_minmax_top_left_bottom_right_min_max.rs diff --git a/tests/generated/absolute_padding_border_overrides_max_size.rs b/tests/generated/flex/absolute_padding_border_overrides_max_size.rs similarity index 100% rename from tests/generated/absolute_padding_border_overrides_max_size.rs rename to tests/generated/flex/absolute_padding_border_overrides_max_size.rs diff --git a/tests/generated/absolute_padding_border_overrides_size.rs b/tests/generated/flex/absolute_padding_border_overrides_size.rs similarity index 100% rename from tests/generated/absolute_padding_border_overrides_size.rs rename to tests/generated/flex/absolute_padding_border_overrides_size.rs diff --git a/tests/generated/align_baseline.rs b/tests/generated/flex/align_baseline.rs similarity index 100% rename from tests/generated/align_baseline.rs rename to tests/generated/flex/align_baseline.rs diff --git a/tests/generated/align_baseline_child.rs b/tests/generated/flex/align_baseline_child.rs similarity index 100% rename from tests/generated/align_baseline_child.rs rename to tests/generated/flex/align_baseline_child.rs diff --git a/tests/generated/align_baseline_child_margin.rs b/tests/generated/flex/align_baseline_child_margin.rs similarity index 100% rename from tests/generated/align_baseline_child_margin.rs rename to tests/generated/flex/align_baseline_child_margin.rs diff --git a/tests/generated/align_baseline_child_margin_percent.rs b/tests/generated/flex/align_baseline_child_margin_percent.rs similarity index 100% rename from tests/generated/align_baseline_child_margin_percent.rs rename to tests/generated/flex/align_baseline_child_margin_percent.rs diff --git a/tests/generated/align_baseline_child_multiline.rs b/tests/generated/flex/align_baseline_child_multiline.rs similarity index 100% rename from tests/generated/align_baseline_child_multiline.rs rename to tests/generated/flex/align_baseline_child_multiline.rs diff --git a/tests/generated/align_baseline_child_multiline_no_override_on_secondline.rs b/tests/generated/flex/align_baseline_child_multiline_no_override_on_secondline.rs similarity index 100% rename from tests/generated/align_baseline_child_multiline_no_override_on_secondline.rs rename to tests/generated/flex/align_baseline_child_multiline_no_override_on_secondline.rs diff --git a/tests/generated/align_baseline_child_multiline_override.rs b/tests/generated/flex/align_baseline_child_multiline_override.rs similarity index 100% rename from tests/generated/align_baseline_child_multiline_override.rs rename to tests/generated/flex/align_baseline_child_multiline_override.rs diff --git a/tests/generated/align_baseline_child_padding.rs b/tests/generated/flex/align_baseline_child_padding.rs similarity index 100% rename from tests/generated/align_baseline_child_padding.rs rename to tests/generated/flex/align_baseline_child_padding.rs diff --git a/tests/generated/align_baseline_child_top.rs b/tests/generated/flex/align_baseline_child_top.rs similarity index 100% rename from tests/generated/align_baseline_child_top.rs rename to tests/generated/flex/align_baseline_child_top.rs diff --git a/tests/generated/align_baseline_child_top2.rs b/tests/generated/flex/align_baseline_child_top2.rs similarity index 100% rename from tests/generated/align_baseline_child_top2.rs rename to tests/generated/flex/align_baseline_child_top2.rs diff --git a/tests/generated/align_baseline_column.rs b/tests/generated/flex/align_baseline_column.rs similarity index 100% rename from tests/generated/align_baseline_column.rs rename to tests/generated/flex/align_baseline_column.rs diff --git a/tests/generated/align_baseline_double_nested_child.rs b/tests/generated/flex/align_baseline_double_nested_child.rs similarity index 100% rename from tests/generated/align_baseline_double_nested_child.rs rename to tests/generated/flex/align_baseline_double_nested_child.rs diff --git a/tests/generated/align_baseline_multiline.rs b/tests/generated/flex/align_baseline_multiline.rs similarity index 100% rename from tests/generated/align_baseline_multiline.rs rename to tests/generated/flex/align_baseline_multiline.rs diff --git a/tests/generated/align_baseline_multiline_column.rs b/tests/generated/flex/align_baseline_multiline_column.rs similarity index 100% rename from tests/generated/align_baseline_multiline_column.rs rename to tests/generated/flex/align_baseline_multiline_column.rs diff --git a/tests/generated/align_baseline_multiline_column2.rs b/tests/generated/flex/align_baseline_multiline_column2.rs similarity index 100% rename from tests/generated/align_baseline_multiline_column2.rs rename to tests/generated/flex/align_baseline_multiline_column2.rs diff --git a/tests/generated/align_baseline_multiline_row_and_column.rs b/tests/generated/flex/align_baseline_multiline_row_and_column.rs similarity index 100% rename from tests/generated/align_baseline_multiline_row_and_column.rs rename to tests/generated/flex/align_baseline_multiline_row_and_column.rs diff --git a/tests/generated/align_baseline_nested_child.rs b/tests/generated/flex/align_baseline_nested_child.rs similarity index 100% rename from tests/generated/align_baseline_nested_child.rs rename to tests/generated/flex/align_baseline_nested_child.rs diff --git a/tests/generated/align_baseline_nested_column.rs b/tests/generated/flex/align_baseline_nested_column.rs similarity index 100% rename from tests/generated/align_baseline_nested_column.rs rename to tests/generated/flex/align_baseline_nested_column.rs diff --git a/tests/generated/align_center_should_size_based_on_content.rs b/tests/generated/flex/align_center_should_size_based_on_content.rs similarity index 100% rename from tests/generated/align_center_should_size_based_on_content.rs rename to tests/generated/flex/align_center_should_size_based_on_content.rs diff --git a/tests/generated/align_content_flex_end.rs b/tests/generated/flex/align_content_flex_end.rs similarity index 100% rename from tests/generated/align_content_flex_end.rs rename to tests/generated/flex/align_content_flex_end.rs diff --git a/tests/generated/align_content_flex_start.rs b/tests/generated/flex/align_content_flex_start.rs similarity index 100% rename from tests/generated/align_content_flex_start.rs rename to tests/generated/flex/align_content_flex_start.rs diff --git a/tests/generated/align_content_flex_start_with_flex.rs b/tests/generated/flex/align_content_flex_start_with_flex.rs similarity index 100% rename from tests/generated/align_content_flex_start_with_flex.rs rename to tests/generated/flex/align_content_flex_start_with_flex.rs diff --git a/tests/generated/align_content_flex_start_without_height_on_children.rs b/tests/generated/flex/align_content_flex_start_without_height_on_children.rs similarity index 100% rename from tests/generated/align_content_flex_start_without_height_on_children.rs rename to tests/generated/flex/align_content_flex_start_without_height_on_children.rs diff --git a/tests/generated/align_content_not_stretch_with_align_items_stretch.rs b/tests/generated/flex/align_content_not_stretch_with_align_items_stretch.rs similarity index 100% rename from tests/generated/align_content_not_stretch_with_align_items_stretch.rs rename to tests/generated/flex/align_content_not_stretch_with_align_items_stretch.rs diff --git a/tests/generated/align_content_space_around_single_line.rs b/tests/generated/flex/align_content_space_around_single_line.rs similarity index 100% rename from tests/generated/align_content_space_around_single_line.rs rename to tests/generated/flex/align_content_space_around_single_line.rs diff --git a/tests/generated/align_content_space_around_wrapped.rs b/tests/generated/flex/align_content_space_around_wrapped.rs similarity index 100% rename from tests/generated/align_content_space_around_wrapped.rs rename to tests/generated/flex/align_content_space_around_wrapped.rs diff --git a/tests/generated/align_content_space_between_single_line.rs b/tests/generated/flex/align_content_space_between_single_line.rs similarity index 100% rename from tests/generated/align_content_space_between_single_line.rs rename to tests/generated/flex/align_content_space_between_single_line.rs diff --git a/tests/generated/align_content_space_between_wrapped.rs b/tests/generated/flex/align_content_space_between_wrapped.rs similarity index 100% rename from tests/generated/align_content_space_between_wrapped.rs rename to tests/generated/flex/align_content_space_between_wrapped.rs diff --git a/tests/generated/align_content_space_evenly_single_line.rs b/tests/generated/flex/align_content_space_evenly_single_line.rs similarity index 100% rename from tests/generated/align_content_space_evenly_single_line.rs rename to tests/generated/flex/align_content_space_evenly_single_line.rs diff --git a/tests/generated/align_content_space_evenly_wrapped.rs b/tests/generated/flex/align_content_space_evenly_wrapped.rs similarity index 100% rename from tests/generated/align_content_space_evenly_wrapped.rs rename to tests/generated/flex/align_content_space_evenly_wrapped.rs diff --git a/tests/generated/align_content_spacearound.rs b/tests/generated/flex/align_content_spacearound.rs similarity index 100% rename from tests/generated/align_content_spacearound.rs rename to tests/generated/flex/align_content_spacearound.rs diff --git a/tests/generated/align_content_spacebetween.rs b/tests/generated/flex/align_content_spacebetween.rs similarity index 100% rename from tests/generated/align_content_spacebetween.rs rename to tests/generated/flex/align_content_spacebetween.rs diff --git a/tests/generated/align_content_stretch.rs b/tests/generated/flex/align_content_stretch.rs similarity index 100% rename from tests/generated/align_content_stretch.rs rename to tests/generated/flex/align_content_stretch.rs diff --git a/tests/generated/align_content_stretch_column.rs b/tests/generated/flex/align_content_stretch_column.rs similarity index 100% rename from tests/generated/align_content_stretch_column.rs rename to tests/generated/flex/align_content_stretch_column.rs diff --git a/tests/generated/align_content_stretch_is_not_overriding_align_items.rs b/tests/generated/flex/align_content_stretch_is_not_overriding_align_items.rs similarity index 100% rename from tests/generated/align_content_stretch_is_not_overriding_align_items.rs rename to tests/generated/flex/align_content_stretch_is_not_overriding_align_items.rs diff --git a/tests/generated/align_content_stretch_row.rs b/tests/generated/flex/align_content_stretch_row.rs similarity index 100% rename from tests/generated/align_content_stretch_row.rs rename to tests/generated/flex/align_content_stretch_row.rs diff --git a/tests/generated/align_content_stretch_row_with_children.rs b/tests/generated/flex/align_content_stretch_row_with_children.rs similarity index 100% rename from tests/generated/align_content_stretch_row_with_children.rs rename to tests/generated/flex/align_content_stretch_row_with_children.rs diff --git a/tests/generated/align_content_stretch_row_with_fixed_height.rs b/tests/generated/flex/align_content_stretch_row_with_fixed_height.rs similarity index 100% rename from tests/generated/align_content_stretch_row_with_fixed_height.rs rename to tests/generated/flex/align_content_stretch_row_with_fixed_height.rs diff --git a/tests/generated/align_content_stretch_row_with_flex.rs b/tests/generated/flex/align_content_stretch_row_with_flex.rs similarity index 100% rename from tests/generated/align_content_stretch_row_with_flex.rs rename to tests/generated/flex/align_content_stretch_row_with_flex.rs diff --git a/tests/generated/align_content_stretch_row_with_flex_no_shrink.rs b/tests/generated/flex/align_content_stretch_row_with_flex_no_shrink.rs similarity index 100% rename from tests/generated/align_content_stretch_row_with_flex_no_shrink.rs rename to tests/generated/flex/align_content_stretch_row_with_flex_no_shrink.rs diff --git a/tests/generated/align_content_stretch_row_with_margin.rs b/tests/generated/flex/align_content_stretch_row_with_margin.rs similarity index 100% rename from tests/generated/align_content_stretch_row_with_margin.rs rename to tests/generated/flex/align_content_stretch_row_with_margin.rs diff --git a/tests/generated/align_content_stretch_row_with_max_height.rs b/tests/generated/flex/align_content_stretch_row_with_max_height.rs similarity index 100% rename from tests/generated/align_content_stretch_row_with_max_height.rs rename to tests/generated/flex/align_content_stretch_row_with_max_height.rs diff --git a/tests/generated/align_content_stretch_row_with_min_height.rs b/tests/generated/flex/align_content_stretch_row_with_min_height.rs similarity index 100% rename from tests/generated/align_content_stretch_row_with_min_height.rs rename to tests/generated/flex/align_content_stretch_row_with_min_height.rs diff --git a/tests/generated/align_content_stretch_row_with_padding.rs b/tests/generated/flex/align_content_stretch_row_with_padding.rs similarity index 100% rename from tests/generated/align_content_stretch_row_with_padding.rs rename to tests/generated/flex/align_content_stretch_row_with_padding.rs diff --git a/tests/generated/align_content_stretch_row_with_single_row.rs b/tests/generated/flex/align_content_stretch_row_with_single_row.rs similarity index 100% rename from tests/generated/align_content_stretch_row_with_single_row.rs rename to tests/generated/flex/align_content_stretch_row_with_single_row.rs diff --git a/tests/generated/align_flex_start_with_shrinking_children.rs b/tests/generated/flex/align_flex_start_with_shrinking_children.rs similarity index 100% rename from tests/generated/align_flex_start_with_shrinking_children.rs rename to tests/generated/flex/align_flex_start_with_shrinking_children.rs diff --git a/tests/generated/align_flex_start_with_shrinking_children_with_stretch.rs b/tests/generated/flex/align_flex_start_with_shrinking_children_with_stretch.rs similarity index 100% rename from tests/generated/align_flex_start_with_shrinking_children_with_stretch.rs rename to tests/generated/flex/align_flex_start_with_shrinking_children_with_stretch.rs diff --git a/tests/generated/align_flex_start_with_stretching_children.rs b/tests/generated/flex/align_flex_start_with_stretching_children.rs similarity index 100% rename from tests/generated/align_flex_start_with_stretching_children.rs rename to tests/generated/flex/align_flex_start_with_stretching_children.rs diff --git a/tests/generated/align_items_center.rs b/tests/generated/flex/align_items_center.rs similarity index 100% rename from tests/generated/align_items_center.rs rename to tests/generated/flex/align_items_center.rs diff --git a/tests/generated/align_items_center_child_with_margin_bigger_than_parent.rs b/tests/generated/flex/align_items_center_child_with_margin_bigger_than_parent.rs similarity index 100% rename from tests/generated/align_items_center_child_with_margin_bigger_than_parent.rs rename to tests/generated/flex/align_items_center_child_with_margin_bigger_than_parent.rs diff --git a/tests/generated/align_items_center_child_without_margin_bigger_than_parent.rs b/tests/generated/flex/align_items_center_child_without_margin_bigger_than_parent.rs similarity index 100% rename from tests/generated/align_items_center_child_without_margin_bigger_than_parent.rs rename to tests/generated/flex/align_items_center_child_without_margin_bigger_than_parent.rs diff --git a/tests/generated/align_items_center_justify_content_center.rs b/tests/generated/flex/align_items_center_justify_content_center.rs similarity index 97% rename from tests/generated/align_items_center_justify_content_center.rs rename to tests/generated/flex/align_items_center_justify_content_center.rs index 91ba2f30f..72940bb7b 100644 --- a/tests/generated/align_items_center_justify_content_center.rs +++ b/tests/generated/flex/align_items_center_justify_content_center.rs @@ -14,11 +14,11 @@ fn align_items_center_justify_content_center() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "\n "; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/align_items_center_min_max_with_padding.rs b/tests/generated/flex/align_items_center_min_max_with_padding.rs similarity index 100% rename from tests/generated/align_items_center_min_max_with_padding.rs rename to tests/generated/flex/align_items_center_min_max_with_padding.rs diff --git a/tests/generated/align_items_center_with_child_margin.rs b/tests/generated/flex/align_items_center_with_child_margin.rs similarity index 100% rename from tests/generated/align_items_center_with_child_margin.rs rename to tests/generated/flex/align_items_center_with_child_margin.rs diff --git a/tests/generated/align_items_center_with_child_top.rs b/tests/generated/flex/align_items_center_with_child_top.rs similarity index 100% rename from tests/generated/align_items_center_with_child_top.rs rename to tests/generated/flex/align_items_center_with_child_top.rs diff --git a/tests/generated/align_items_flex_end.rs b/tests/generated/flex/align_items_flex_end.rs similarity index 100% rename from tests/generated/align_items_flex_end.rs rename to tests/generated/flex/align_items_flex_end.rs diff --git a/tests/generated/align_items_flex_end_child_with_margin_bigger_than_parent.rs b/tests/generated/flex/align_items_flex_end_child_with_margin_bigger_than_parent.rs similarity index 100% rename from tests/generated/align_items_flex_end_child_with_margin_bigger_than_parent.rs rename to tests/generated/flex/align_items_flex_end_child_with_margin_bigger_than_parent.rs diff --git a/tests/generated/align_items_flex_end_child_without_margin_bigger_than_parent.rs b/tests/generated/flex/align_items_flex_end_child_without_margin_bigger_than_parent.rs similarity index 100% rename from tests/generated/align_items_flex_end_child_without_margin_bigger_than_parent.rs rename to tests/generated/flex/align_items_flex_end_child_without_margin_bigger_than_parent.rs diff --git a/tests/generated/align_items_flex_start.rs b/tests/generated/flex/align_items_flex_start.rs similarity index 100% rename from tests/generated/align_items_flex_start.rs rename to tests/generated/flex/align_items_flex_start.rs diff --git a/tests/generated/align_items_min_max.rs b/tests/generated/flex/align_items_min_max.rs similarity index 100% rename from tests/generated/align_items_min_max.rs rename to tests/generated/flex/align_items_min_max.rs diff --git a/tests/generated/align_items_stretch.rs b/tests/generated/flex/align_items_stretch.rs similarity index 100% rename from tests/generated/align_items_stretch.rs rename to tests/generated/flex/align_items_stretch.rs diff --git a/tests/generated/align_items_stretch_min_cross.rs b/tests/generated/flex/align_items_stretch_min_cross.rs similarity index 100% rename from tests/generated/align_items_stretch_min_cross.rs rename to tests/generated/flex/align_items_stretch_min_cross.rs diff --git a/tests/generated/align_self_baseline.rs b/tests/generated/flex/align_self_baseline.rs similarity index 100% rename from tests/generated/align_self_baseline.rs rename to tests/generated/flex/align_self_baseline.rs diff --git a/tests/generated/align_self_center.rs b/tests/generated/flex/align_self_center.rs similarity index 100% rename from tests/generated/align_self_center.rs rename to tests/generated/flex/align_self_center.rs diff --git a/tests/generated/align_self_center_undefined_max_height.rs b/tests/generated/flex/align_self_center_undefined_max_height.rs similarity index 100% rename from tests/generated/align_self_center_undefined_max_height.rs rename to tests/generated/flex/align_self_center_undefined_max_height.rs diff --git a/tests/generated/align_self_flex_end.rs b/tests/generated/flex/align_self_flex_end.rs similarity index 100% rename from tests/generated/align_self_flex_end.rs rename to tests/generated/flex/align_self_flex_end.rs diff --git a/tests/generated/align_self_flex_end_override_flex_start.rs b/tests/generated/flex/align_self_flex_end_override_flex_start.rs similarity index 100% rename from tests/generated/align_self_flex_end_override_flex_start.rs rename to tests/generated/flex/align_self_flex_end_override_flex_start.rs diff --git a/tests/generated/align_self_flex_start.rs b/tests/generated/flex/align_self_flex_start.rs similarity index 100% rename from tests/generated/align_self_flex_start.rs rename to tests/generated/flex/align_self_flex_start.rs diff --git a/tests/generated/align_stretch_should_size_based_on_parent.rs b/tests/generated/flex/align_stretch_should_size_based_on_parent.rs similarity index 100% rename from tests/generated/align_stretch_should_size_based_on_parent.rs rename to tests/generated/flex/align_stretch_should_size_based_on_parent.rs diff --git a/tests/generated/android_news_feed.rs b/tests/generated/flex/android_news_feed.rs similarity index 100% rename from tests/generated/android_news_feed.rs rename to tests/generated/flex/android_news_feed.rs diff --git a/tests/generated/aspect_ratio_flex_column_fill_height.rs b/tests/generated/flex/aspect_ratio_flex_column_fill_height.rs similarity index 100% rename from tests/generated/aspect_ratio_flex_column_fill_height.rs rename to tests/generated/flex/aspect_ratio_flex_column_fill_height.rs diff --git a/tests/generated/aspect_ratio_flex_column_fill_max_height.rs b/tests/generated/flex/aspect_ratio_flex_column_fill_max_height.rs similarity index 92% rename from tests/generated/aspect_ratio_flex_column_fill_max_height.rs rename to tests/generated/flex/aspect_ratio_flex_column_fill_max_height.rs index 72d61b53f..9e2bc0ac3 100644 --- a/tests/generated/aspect_ratio_flex_column_fill_max_height.rs +++ b/tests/generated/flex/aspect_ratio_flex_column_fill_max_height.rs @@ -3,7 +3,7 @@ fn aspect_ratio_flex_column_fill_max_height() { #[allow(unused_imports)] use taffy::{prelude::*, tree::Layout}; let mut taffy = taffy::Taffy::new(); - let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (40f32) , height : auto () , } , aspect_ratio : Some (2f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH" ; super :: measure_standard_text (known_dimensions , available_space , TEXT , super :: WritingMode :: Horizontal , Some (2f32)) }) ,) . unwrap () ; + let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (40f32) , height : auto () , } , aspect_ratio : Some (2f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH" ; crate :: generated :: measure_standard_text (known_dimensions , available_space , TEXT , crate :: generated :: WritingMode :: Horizontal , Some (2f32)) }) ,) . unwrap () ; let node = taffy .new_with_children( taffy::style::Style { diff --git a/tests/generated/aspect_ratio_flex_column_fill_max_width.rs b/tests/generated/flex/aspect_ratio_flex_column_fill_max_width.rs similarity index 95% rename from tests/generated/aspect_ratio_flex_column_fill_max_width.rs rename to tests/generated/flex/aspect_ratio_flex_column_fill_max_width.rs index 31d6e6e12..31aed825b 100644 --- a/tests/generated/aspect_ratio_flex_column_fill_max_width.rs +++ b/tests/generated/flex/aspect_ratio_flex_column_fill_max_width.rs @@ -12,11 +12,11 @@ fn aspect_ratio_flex_column_fill_max_width() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, Some(2f32), ) }), diff --git a/tests/generated/aspect_ratio_flex_column_fill_min_height.rs b/tests/generated/flex/aspect_ratio_flex_column_fill_min_height.rs similarity index 100% rename from tests/generated/aspect_ratio_flex_column_fill_min_height.rs rename to tests/generated/flex/aspect_ratio_flex_column_fill_min_height.rs diff --git a/tests/generated/aspect_ratio_flex_column_fill_min_width.rs b/tests/generated/flex/aspect_ratio_flex_column_fill_min_width.rs similarity index 95% rename from tests/generated/aspect_ratio_flex_column_fill_min_width.rs rename to tests/generated/flex/aspect_ratio_flex_column_fill_min_width.rs index aef83bb66..d06edc076 100644 --- a/tests/generated/aspect_ratio_flex_column_fill_min_width.rs +++ b/tests/generated/flex/aspect_ratio_flex_column_fill_min_width.rs @@ -12,11 +12,11 @@ fn aspect_ratio_flex_column_fill_min_width() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "\n \n "; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, Some(2f32), ) }), diff --git a/tests/generated/aspect_ratio_flex_column_fill_width.rs b/tests/generated/flex/aspect_ratio_flex_column_fill_width.rs similarity index 100% rename from tests/generated/aspect_ratio_flex_column_fill_width.rs rename to tests/generated/flex/aspect_ratio_flex_column_fill_width.rs diff --git a/tests/generated/aspect_ratio_flex_column_fill_width_flex.rs b/tests/generated/flex/aspect_ratio_flex_column_fill_width_flex.rs similarity index 100% rename from tests/generated/aspect_ratio_flex_column_fill_width_flex.rs rename to tests/generated/flex/aspect_ratio_flex_column_fill_width_flex.rs diff --git a/tests/generated/aspect_ratio_flex_column_stretch_fill_height.rs b/tests/generated/flex/aspect_ratio_flex_column_stretch_fill_height.rs similarity index 100% rename from tests/generated/aspect_ratio_flex_column_stretch_fill_height.rs rename to tests/generated/flex/aspect_ratio_flex_column_stretch_fill_height.rs diff --git a/tests/generated/aspect_ratio_flex_column_stretch_fill_max_height.rs b/tests/generated/flex/aspect_ratio_flex_column_stretch_fill_max_height.rs similarity index 92% rename from tests/generated/aspect_ratio_flex_column_stretch_fill_max_height.rs rename to tests/generated/flex/aspect_ratio_flex_column_stretch_fill_max_height.rs index 55e050f25..feeafa46a 100644 --- a/tests/generated/aspect_ratio_flex_column_stretch_fill_max_height.rs +++ b/tests/generated/flex/aspect_ratio_flex_column_stretch_fill_max_height.rs @@ -3,7 +3,7 @@ fn aspect_ratio_flex_column_stretch_fill_max_height() { #[allow(unused_imports)] use taffy::{prelude::*, tree::Layout}; let mut taffy = taffy::Taffy::new(); - let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (40f32) , height : auto () , } , aspect_ratio : Some (2f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH" ; super :: measure_standard_text (known_dimensions , available_space , TEXT , super :: WritingMode :: Horizontal , Some (2f32)) }) ,) . unwrap () ; + let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (40f32) , height : auto () , } , aspect_ratio : Some (2f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH" ; crate :: generated :: measure_standard_text (known_dimensions , available_space , TEXT , crate :: generated :: WritingMode :: Horizontal , Some (2f32)) }) ,) . unwrap () ; let node = taffy .new_with_children( taffy::style::Style { diff --git a/tests/generated/aspect_ratio_flex_column_stretch_fill_max_width.rs b/tests/generated/flex/aspect_ratio_flex_column_stretch_fill_max_width.rs similarity index 95% rename from tests/generated/aspect_ratio_flex_column_stretch_fill_max_width.rs rename to tests/generated/flex/aspect_ratio_flex_column_stretch_fill_max_width.rs index a893eee43..c37e8a2e2 100644 --- a/tests/generated/aspect_ratio_flex_column_stretch_fill_max_width.rs +++ b/tests/generated/flex/aspect_ratio_flex_column_stretch_fill_max_width.rs @@ -12,11 +12,11 @@ fn aspect_ratio_flex_column_stretch_fill_max_width() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, Some(2f32), ) }), diff --git a/tests/generated/aspect_ratio_flex_column_stretch_fill_width.rs b/tests/generated/flex/aspect_ratio_flex_column_stretch_fill_width.rs similarity index 100% rename from tests/generated/aspect_ratio_flex_column_stretch_fill_width.rs rename to tests/generated/flex/aspect_ratio_flex_column_stretch_fill_width.rs diff --git a/tests/generated/aspect_ratio_flex_row_fill_height.rs b/tests/generated/flex/aspect_ratio_flex_row_fill_height.rs similarity index 100% rename from tests/generated/aspect_ratio_flex_row_fill_height.rs rename to tests/generated/flex/aspect_ratio_flex_row_fill_height.rs diff --git a/tests/generated/aspect_ratio_flex_row_fill_max_height.rs b/tests/generated/flex/aspect_ratio_flex_row_fill_max_height.rs similarity index 92% rename from tests/generated/aspect_ratio_flex_row_fill_max_height.rs rename to tests/generated/flex/aspect_ratio_flex_row_fill_max_height.rs index ead89fa20..e179b51de 100644 --- a/tests/generated/aspect_ratio_flex_row_fill_max_height.rs +++ b/tests/generated/flex/aspect_ratio_flex_row_fill_max_height.rs @@ -3,7 +3,7 @@ fn aspect_ratio_flex_row_fill_max_height() { #[allow(unused_imports)] use taffy::{prelude::*, tree::Layout}; let mut taffy = taffy::Taffy::new(); - let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (40f32) , height : auto () , } , aspect_ratio : Some (2f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH" ; super :: measure_standard_text (known_dimensions , available_space , TEXT , super :: WritingMode :: Horizontal , Some (2f32)) }) ,) . unwrap () ; + let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (40f32) , height : auto () , } , aspect_ratio : Some (2f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH" ; crate :: generated :: measure_standard_text (known_dimensions , available_space , TEXT , crate :: generated :: WritingMode :: Horizontal , Some (2f32)) }) ,) . unwrap () ; let node = taffy .new_with_children( taffy::style::Style { diff --git a/tests/generated/aspect_ratio_flex_row_fill_max_width.rs b/tests/generated/flex/aspect_ratio_flex_row_fill_max_width.rs similarity index 95% rename from tests/generated/aspect_ratio_flex_row_fill_max_width.rs rename to tests/generated/flex/aspect_ratio_flex_row_fill_max_width.rs index cd2e6dff1..ba80951db 100644 --- a/tests/generated/aspect_ratio_flex_row_fill_max_width.rs +++ b/tests/generated/flex/aspect_ratio_flex_row_fill_max_width.rs @@ -12,11 +12,11 @@ fn aspect_ratio_flex_row_fill_max_width() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, Some(2f32), ) }), diff --git a/tests/generated/aspect_ratio_flex_row_fill_min_height.rs b/tests/generated/flex/aspect_ratio_flex_row_fill_min_height.rs similarity index 100% rename from tests/generated/aspect_ratio_flex_row_fill_min_height.rs rename to tests/generated/flex/aspect_ratio_flex_row_fill_min_height.rs diff --git a/tests/generated/aspect_ratio_flex_row_fill_min_width.rs b/tests/generated/flex/aspect_ratio_flex_row_fill_min_width.rs similarity index 95% rename from tests/generated/aspect_ratio_flex_row_fill_min_width.rs rename to tests/generated/flex/aspect_ratio_flex_row_fill_min_width.rs index 6bc68b333..e95bb4cf3 100644 --- a/tests/generated/aspect_ratio_flex_row_fill_min_width.rs +++ b/tests/generated/flex/aspect_ratio_flex_row_fill_min_width.rs @@ -12,11 +12,11 @@ fn aspect_ratio_flex_row_fill_min_width() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "\n \n "; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, Some(2f32), ) }), diff --git a/tests/generated/aspect_ratio_flex_row_fill_width.rs b/tests/generated/flex/aspect_ratio_flex_row_fill_width.rs similarity index 100% rename from tests/generated/aspect_ratio_flex_row_fill_width.rs rename to tests/generated/flex/aspect_ratio_flex_row_fill_width.rs diff --git a/tests/generated/aspect_ratio_flex_row_fill_width_flex.rs b/tests/generated/flex/aspect_ratio_flex_row_fill_width_flex.rs similarity index 100% rename from tests/generated/aspect_ratio_flex_row_fill_width_flex.rs rename to tests/generated/flex/aspect_ratio_flex_row_fill_width_flex.rs diff --git a/tests/generated/aspect_ratio_flex_row_stretch_fill_height.rs b/tests/generated/flex/aspect_ratio_flex_row_stretch_fill_height.rs similarity index 100% rename from tests/generated/aspect_ratio_flex_row_stretch_fill_height.rs rename to tests/generated/flex/aspect_ratio_flex_row_stretch_fill_height.rs diff --git a/tests/generated/aspect_ratio_flex_row_stretch_fill_max_height.rs b/tests/generated/flex/aspect_ratio_flex_row_stretch_fill_max_height.rs similarity index 92% rename from tests/generated/aspect_ratio_flex_row_stretch_fill_max_height.rs rename to tests/generated/flex/aspect_ratio_flex_row_stretch_fill_max_height.rs index 6114dfe4a..e45ee0754 100644 --- a/tests/generated/aspect_ratio_flex_row_stretch_fill_max_height.rs +++ b/tests/generated/flex/aspect_ratio_flex_row_stretch_fill_max_height.rs @@ -3,7 +3,7 @@ fn aspect_ratio_flex_row_stretch_fill_max_height() { #[allow(unused_imports)] use taffy::{prelude::*, tree::Layout}; let mut taffy = taffy::Taffy::new(); - let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (40f32) , height : auto () , } , aspect_ratio : Some (2f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH" ; super :: measure_standard_text (known_dimensions , available_space , TEXT , super :: WritingMode :: Horizontal , Some (2f32)) }) ,) . unwrap () ; + let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { max_size : taffy :: geometry :: Size { width : taffy :: style :: Dimension :: Length (40f32) , height : auto () , } , aspect_ratio : Some (2f32) , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH" ; crate :: generated :: measure_standard_text (known_dimensions , available_space , TEXT , crate :: generated :: WritingMode :: Horizontal , Some (2f32)) }) ,) . unwrap () ; let node = taffy .new_with_children( taffy::style::Style { diff --git a/tests/generated/aspect_ratio_flex_row_stretch_fill_max_width.rs b/tests/generated/flex/aspect_ratio_flex_row_stretch_fill_max_width.rs similarity index 95% rename from tests/generated/aspect_ratio_flex_row_stretch_fill_max_width.rs rename to tests/generated/flex/aspect_ratio_flex_row_stretch_fill_max_width.rs index 76b8be5ff..c5598ca92 100644 --- a/tests/generated/aspect_ratio_flex_row_stretch_fill_max_width.rs +++ b/tests/generated/flex/aspect_ratio_flex_row_stretch_fill_max_width.rs @@ -12,11 +12,11 @@ fn aspect_ratio_flex_row_stretch_fill_max_width() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, Some(2f32), ) }), diff --git a/tests/generated/aspect_ratio_flex_row_stretch_fill_width.rs b/tests/generated/flex/aspect_ratio_flex_row_stretch_fill_width.rs similarity index 100% rename from tests/generated/aspect_ratio_flex_row_stretch_fill_width.rs rename to tests/generated/flex/aspect_ratio_flex_row_stretch_fill_width.rs diff --git a/tests/generated/bevy_issue_7976_3_level.rs b/tests/generated/flex/bevy_issue_7976_3_level.rs similarity index 100% rename from tests/generated/bevy_issue_7976_3_level.rs rename to tests/generated/flex/bevy_issue_7976_3_level.rs diff --git a/tests/generated/bevy_issue_7976_4_level.rs b/tests/generated/flex/bevy_issue_7976_4_level.rs similarity index 100% rename from tests/generated/bevy_issue_7976_4_level.rs rename to tests/generated/flex/bevy_issue_7976_4_level.rs diff --git a/tests/generated/bevy_issue_7976_reduced.rs b/tests/generated/flex/bevy_issue_7976_reduced.rs similarity index 100% rename from tests/generated/bevy_issue_7976_reduced.rs rename to tests/generated/flex/bevy_issue_7976_reduced.rs diff --git a/tests/generated/bevy_issue_8017.rs b/tests/generated/flex/bevy_issue_8017.rs similarity index 100% rename from tests/generated/bevy_issue_8017.rs rename to tests/generated/flex/bevy_issue_8017.rs diff --git a/tests/generated/bevy_issue_8017_reduced.rs b/tests/generated/flex/bevy_issue_8017_reduced.rs similarity index 100% rename from tests/generated/bevy_issue_8017_reduced.rs rename to tests/generated/flex/bevy_issue_8017_reduced.rs diff --git a/tests/generated/bevy_issue_8082.rs b/tests/generated/flex/bevy_issue_8082.rs similarity index 100% rename from tests/generated/bevy_issue_8082.rs rename to tests/generated/flex/bevy_issue_8082.rs diff --git a/tests/generated/bevy_issue_8082_percent.rs b/tests/generated/flex/bevy_issue_8082_percent.rs similarity index 100% rename from tests/generated/bevy_issue_8082_percent.rs rename to tests/generated/flex/bevy_issue_8082_percent.rs diff --git a/tests/generated/bevy_issue_9530.rs b/tests/generated/flex/bevy_issue_9530.rs similarity index 97% rename from tests/generated/bevy_issue_9530.rs rename to tests/generated/flex/bevy_issue_9530.rs index 88d28a39f..f1a3b8f54 100644 --- a/tests/generated/bevy_issue_9530.rs +++ b/tests/generated/flex/bevy_issue_9530.rs @@ -22,7 +22,7 @@ fn bevy_issue_9530() { ..Default::default() }) .unwrap(); - let node11 = taffy . new_leaf_with_measure (taffy :: style :: Style { align_items : Some (taffy :: style :: AlignItems :: Center) , align_content : Some (taffy :: style :: AlignContent :: Center) , justify_content : Some (taffy :: style :: JustifyContent :: Center) , flex_grow : 1f32 , margin : taffy :: geometry :: Rect { left : taffy :: style :: LengthPercentageAuto :: Length (20f32) , right : taffy :: style :: LengthPercentageAuto :: Length (20f32) , top : taffy :: style :: LengthPercentageAuto :: Length (20f32) , bottom : taffy :: style :: LengthPercentageAuto :: Length (20f32) , } , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH" ; super :: measure_standard_text (known_dimensions , available_space , TEXT , super :: WritingMode :: Horizontal , None) }) ,) . unwrap () ; + let node11 = taffy . new_leaf_with_measure (taffy :: style :: Style { align_items : Some (taffy :: style :: AlignItems :: Center) , align_content : Some (taffy :: style :: AlignContent :: Center) , justify_content : Some (taffy :: style :: JustifyContent :: Center) , flex_grow : 1f32 , margin : taffy :: geometry :: Rect { left : taffy :: style :: LengthPercentageAuto :: Length (20f32) , right : taffy :: style :: LengthPercentageAuto :: Length (20f32) , top : taffy :: style :: LengthPercentageAuto :: Length (20f32) , bottom : taffy :: style :: LengthPercentageAuto :: Length (20f32) , } , .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH\u{200b}HHHH" ; crate :: generated :: measure_standard_text (known_dimensions , available_space , TEXT , crate :: generated :: WritingMode :: Horizontal , None) }) ,) . unwrap () ; let node12 = taffy .new_leaf(taffy::style::Style { size: taffy::geometry::Size { diff --git a/tests/generated/bevy_issue_9530_reduced.rs b/tests/generated/flex/bevy_issue_9530_reduced.rs similarity index 96% rename from tests/generated/bevy_issue_9530_reduced.rs rename to tests/generated/flex/bevy_issue_9530_reduced.rs index 17af524b6..23fa866fc 100644 --- a/tests/generated/bevy_issue_9530_reduced.rs +++ b/tests/generated/flex/bevy_issue_9530_reduced.rs @@ -8,11 +8,11 @@ fn bevy_issue_9530_reduced() { taffy::style::Style { flex_grow: 1f32, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/bevy_issue_9530_reduced2.rs b/tests/generated/flex/bevy_issue_9530_reduced2.rs similarity index 96% rename from tests/generated/bevy_issue_9530_reduced2.rs rename to tests/generated/flex/bevy_issue_9530_reduced2.rs index ea22bf42a..61a4dee2b 100644 --- a/tests/generated/bevy_issue_9530_reduced2.rs +++ b/tests/generated/flex/bevy_issue_9530_reduced2.rs @@ -8,11 +8,11 @@ fn bevy_issue_9530_reduced2() { taffy::style::Style { flex_grow: 1f32, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/bevy_issue_9530_reduced3.rs b/tests/generated/flex/bevy_issue_9530_reduced3.rs similarity index 95% rename from tests/generated/bevy_issue_9530_reduced3.rs rename to tests/generated/flex/bevy_issue_9530_reduced3.rs index c296e4a83..1413c4e33 100644 --- a/tests/generated/bevy_issue_9530_reduced3.rs +++ b/tests/generated/flex/bevy_issue_9530_reduced3.rs @@ -17,11 +17,11 @@ fn bevy_issue_9530_reduced3() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/bevy_issue_9530_reduced4.rs b/tests/generated/flex/bevy_issue_9530_reduced4.rs similarity index 95% rename from tests/generated/bevy_issue_9530_reduced4.rs rename to tests/generated/flex/bevy_issue_9530_reduced4.rs index 6a124c2be..d3dc46384 100644 --- a/tests/generated/bevy_issue_9530_reduced4.rs +++ b/tests/generated/flex/bevy_issue_9530_reduced4.rs @@ -16,11 +16,11 @@ fn bevy_issue_9530_reduced4() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/border_center_child.rs b/tests/generated/flex/border_center_child.rs similarity index 100% rename from tests/generated/border_center_child.rs rename to tests/generated/flex/border_center_child.rs diff --git a/tests/generated/border_container_match_child.rs b/tests/generated/flex/border_container_match_child.rs similarity index 100% rename from tests/generated/border_container_match_child.rs rename to tests/generated/flex/border_container_match_child.rs diff --git a/tests/generated/border_flex_child.rs b/tests/generated/flex/border_flex_child.rs similarity index 100% rename from tests/generated/border_flex_child.rs rename to tests/generated/flex/border_flex_child.rs diff --git a/tests/generated/border_no_child.rs b/tests/generated/flex/border_no_child.rs similarity index 100% rename from tests/generated/border_no_child.rs rename to tests/generated/flex/border_no_child.rs diff --git a/tests/generated/border_no_size.rs b/tests/generated/flex/border_no_size.rs similarity index 100% rename from tests/generated/border_no_size.rs rename to tests/generated/flex/border_no_size.rs diff --git a/tests/generated/border_stretch_child.rs b/tests/generated/flex/border_stretch_child.rs similarity index 100% rename from tests/generated/border_stretch_child.rs rename to tests/generated/flex/border_stretch_child.rs diff --git a/tests/generated/child_min_max_width_flexing.rs b/tests/generated/flex/child_min_max_width_flexing.rs similarity index 100% rename from tests/generated/child_min_max_width_flexing.rs rename to tests/generated/flex/child_min_max_width_flexing.rs diff --git a/tests/generated/child_with_padding_align_end.rs b/tests/generated/flex/child_with_padding_align_end.rs similarity index 100% rename from tests/generated/child_with_padding_align_end.rs rename to tests/generated/flex/child_with_padding_align_end.rs diff --git a/tests/generated/container_with_unsized_child.rs b/tests/generated/flex/container_with_unsized_child.rs similarity index 100% rename from tests/generated/container_with_unsized_child.rs rename to tests/generated/flex/container_with_unsized_child.rs diff --git a/tests/generated/display_none.rs b/tests/generated/flex/display_none.rs similarity index 100% rename from tests/generated/display_none.rs rename to tests/generated/flex/display_none.rs diff --git a/tests/generated/display_none_absolute_child.rs b/tests/generated/flex/display_none_absolute_child.rs similarity index 100% rename from tests/generated/display_none_absolute_child.rs rename to tests/generated/flex/display_none_absolute_child.rs diff --git a/tests/generated/display_none_fixed_size.rs b/tests/generated/flex/display_none_fixed_size.rs similarity index 100% rename from tests/generated/display_none_fixed_size.rs rename to tests/generated/flex/display_none_fixed_size.rs diff --git a/tests/generated/display_none_only_node.rs b/tests/generated/flex/display_none_only_node.rs similarity index 100% rename from tests/generated/display_none_only_node.rs rename to tests/generated/flex/display_none_only_node.rs diff --git a/tests/generated/display_none_with_child.rs b/tests/generated/flex/display_none_with_child.rs similarity index 100% rename from tests/generated/display_none_with_child.rs rename to tests/generated/flex/display_none_with_child.rs diff --git a/tests/generated/display_none_with_margin.rs b/tests/generated/flex/display_none_with_margin.rs similarity index 100% rename from tests/generated/display_none_with_margin.rs rename to tests/generated/flex/display_none_with_margin.rs diff --git a/tests/generated/display_none_with_position.rs b/tests/generated/flex/display_none_with_position.rs similarity index 100% rename from tests/generated/display_none_with_position.rs rename to tests/generated/flex/display_none_with_position.rs diff --git a/tests/generated/display_none_with_position_absolute.rs b/tests/generated/flex/display_none_with_position_absolute.rs similarity index 100% rename from tests/generated/display_none_with_position_absolute.rs rename to tests/generated/flex/display_none_with_position_absolute.rs diff --git a/tests/generated/do_not_clamp_height_of_absolute_node_to_height_of_its_overflow_hidden_parent.rs b/tests/generated/flex/do_not_clamp_height_of_absolute_node_to_height_of_its_overflow_hidden_parent.rs similarity index 100% rename from tests/generated/do_not_clamp_height_of_absolute_node_to_height_of_its_overflow_hidden_parent.rs rename to tests/generated/flex/do_not_clamp_height_of_absolute_node_to_height_of_its_overflow_hidden_parent.rs diff --git a/tests/generated/flex_basis_and_main_dimen_set_when_flexing.rs b/tests/generated/flex/flex_basis_and_main_dimen_set_when_flexing.rs similarity index 100% rename from tests/generated/flex_basis_and_main_dimen_set_when_flexing.rs rename to tests/generated/flex/flex_basis_and_main_dimen_set_when_flexing.rs diff --git a/tests/generated/flex_basis_flex_grow_column.rs b/tests/generated/flex/flex_basis_flex_grow_column.rs similarity index 100% rename from tests/generated/flex_basis_flex_grow_column.rs rename to tests/generated/flex/flex_basis_flex_grow_column.rs diff --git a/tests/generated/flex_basis_flex_grow_row.rs b/tests/generated/flex/flex_basis_flex_grow_row.rs similarity index 100% rename from tests/generated/flex_basis_flex_grow_row.rs rename to tests/generated/flex/flex_basis_flex_grow_row.rs diff --git a/tests/generated/flex_basis_flex_shrink_column.rs b/tests/generated/flex/flex_basis_flex_shrink_column.rs similarity index 100% rename from tests/generated/flex_basis_flex_shrink_column.rs rename to tests/generated/flex/flex_basis_flex_shrink_column.rs diff --git a/tests/generated/flex_basis_flex_shrink_row.rs b/tests/generated/flex/flex_basis_flex_shrink_row.rs similarity index 100% rename from tests/generated/flex_basis_flex_shrink_row.rs rename to tests/generated/flex/flex_basis_flex_shrink_row.rs diff --git a/tests/generated/flex_basis_larger_than_content_column.rs b/tests/generated/flex/flex_basis_larger_than_content_column.rs similarity index 100% rename from tests/generated/flex_basis_larger_than_content_column.rs rename to tests/generated/flex/flex_basis_larger_than_content_column.rs diff --git a/tests/generated/flex_basis_larger_than_content_row.rs b/tests/generated/flex/flex_basis_larger_than_content_row.rs similarity index 100% rename from tests/generated/flex_basis_larger_than_content_row.rs rename to tests/generated/flex/flex_basis_larger_than_content_row.rs diff --git a/tests/generated/flex_basis_overrides_main_size.rs b/tests/generated/flex/flex_basis_overrides_main_size.rs similarity index 100% rename from tests/generated/flex_basis_overrides_main_size.rs rename to tests/generated/flex/flex_basis_overrides_main_size.rs diff --git a/tests/generated/flex_basis_slightly_smaller_then_content_with_flex_grow_large_size.rs b/tests/generated/flex/flex_basis_slightly_smaller_then_content_with_flex_grow_large_size.rs similarity index 100% rename from tests/generated/flex_basis_slightly_smaller_then_content_with_flex_grow_large_size.rs rename to tests/generated/flex/flex_basis_slightly_smaller_then_content_with_flex_grow_large_size.rs diff --git a/tests/generated/flex_basis_smaller_than_content_column.rs b/tests/generated/flex/flex_basis_smaller_than_content_column.rs similarity index 100% rename from tests/generated/flex_basis_smaller_than_content_column.rs rename to tests/generated/flex/flex_basis_smaller_than_content_column.rs diff --git a/tests/generated/flex_basis_smaller_than_content_row.rs b/tests/generated/flex/flex_basis_smaller_than_content_row.rs similarity index 100% rename from tests/generated/flex_basis_smaller_than_content_row.rs rename to tests/generated/flex/flex_basis_smaller_than_content_row.rs diff --git a/tests/generated/flex_basis_smaller_than_main_dimen_column.rs b/tests/generated/flex/flex_basis_smaller_than_main_dimen_column.rs similarity index 100% rename from tests/generated/flex_basis_smaller_than_main_dimen_column.rs rename to tests/generated/flex/flex_basis_smaller_than_main_dimen_column.rs diff --git a/tests/generated/flex_basis_smaller_than_main_dimen_row.rs b/tests/generated/flex/flex_basis_smaller_than_main_dimen_row.rs similarity index 100% rename from tests/generated/flex_basis_smaller_than_main_dimen_row.rs rename to tests/generated/flex/flex_basis_smaller_than_main_dimen_row.rs diff --git a/tests/generated/flex_basis_smaller_then_content_with_flex_grow_large_size.rs b/tests/generated/flex/flex_basis_smaller_then_content_with_flex_grow_large_size.rs similarity index 100% rename from tests/generated/flex_basis_smaller_then_content_with_flex_grow_large_size.rs rename to tests/generated/flex/flex_basis_smaller_then_content_with_flex_grow_large_size.rs diff --git a/tests/generated/flex_basis_smaller_then_content_with_flex_grow_small_size.rs b/tests/generated/flex/flex_basis_smaller_then_content_with_flex_grow_small_size.rs similarity index 100% rename from tests/generated/flex_basis_smaller_then_content_with_flex_grow_small_size.rs rename to tests/generated/flex/flex_basis_smaller_then_content_with_flex_grow_small_size.rs diff --git a/tests/generated/flex_basis_smaller_then_content_with_flex_grow_unconstraint_size.rs b/tests/generated/flex/flex_basis_smaller_then_content_with_flex_grow_unconstraint_size.rs similarity index 100% rename from tests/generated/flex_basis_smaller_then_content_with_flex_grow_unconstraint_size.rs rename to tests/generated/flex/flex_basis_smaller_then_content_with_flex_grow_unconstraint_size.rs diff --git a/tests/generated/flex_basis_smaller_then_content_with_flex_grow_very_large_size.rs b/tests/generated/flex/flex_basis_smaller_then_content_with_flex_grow_very_large_size.rs similarity index 100% rename from tests/generated/flex_basis_smaller_then_content_with_flex_grow_very_large_size.rs rename to tests/generated/flex/flex_basis_smaller_then_content_with_flex_grow_very_large_size.rs diff --git a/tests/generated/flex_basis_unconstraint_column.rs b/tests/generated/flex/flex_basis_unconstraint_column.rs similarity index 100% rename from tests/generated/flex_basis_unconstraint_column.rs rename to tests/generated/flex/flex_basis_unconstraint_column.rs diff --git a/tests/generated/flex_basis_unconstraint_row.rs b/tests/generated/flex/flex_basis_unconstraint_row.rs similarity index 100% rename from tests/generated/flex_basis_unconstraint_row.rs rename to tests/generated/flex/flex_basis_unconstraint_row.rs diff --git a/tests/generated/flex_basis_zero_undefined_main_size.rs b/tests/generated/flex/flex_basis_zero_undefined_main_size.rs similarity index 100% rename from tests/generated/flex_basis_zero_undefined_main_size.rs rename to tests/generated/flex/flex_basis_zero_undefined_main_size.rs diff --git a/tests/generated/flex_column_relative_all_sides.rs b/tests/generated/flex/flex_column_relative_all_sides.rs similarity index 100% rename from tests/generated/flex_column_relative_all_sides.rs rename to tests/generated/flex/flex_column_relative_all_sides.rs diff --git a/tests/generated/flex_direction_column.rs b/tests/generated/flex/flex_direction_column.rs similarity index 100% rename from tests/generated/flex_direction_column.rs rename to tests/generated/flex/flex_direction_column.rs diff --git a/tests/generated/flex_direction_column_no_height.rs b/tests/generated/flex/flex_direction_column_no_height.rs similarity index 100% rename from tests/generated/flex_direction_column_no_height.rs rename to tests/generated/flex/flex_direction_column_no_height.rs diff --git a/tests/generated/flex_direction_column_reverse.rs b/tests/generated/flex/flex_direction_column_reverse.rs similarity index 100% rename from tests/generated/flex_direction_column_reverse.rs rename to tests/generated/flex/flex_direction_column_reverse.rs diff --git a/tests/generated/flex_direction_column_reverse_no_height.rs b/tests/generated/flex/flex_direction_column_reverse_no_height.rs similarity index 100% rename from tests/generated/flex_direction_column_reverse_no_height.rs rename to tests/generated/flex/flex_direction_column_reverse_no_height.rs diff --git a/tests/generated/flex_direction_row.rs b/tests/generated/flex/flex_direction_row.rs similarity index 100% rename from tests/generated/flex_direction_row.rs rename to tests/generated/flex/flex_direction_row.rs diff --git a/tests/generated/flex_direction_row_no_width.rs b/tests/generated/flex/flex_direction_row_no_width.rs similarity index 100% rename from tests/generated/flex_direction_row_no_width.rs rename to tests/generated/flex/flex_direction_row_no_width.rs diff --git a/tests/generated/flex_direction_row_reverse.rs b/tests/generated/flex/flex_direction_row_reverse.rs similarity index 100% rename from tests/generated/flex_direction_row_reverse.rs rename to tests/generated/flex/flex_direction_row_reverse.rs diff --git a/tests/generated/flex_grow_child.rs b/tests/generated/flex/flex_grow_child.rs similarity index 100% rename from tests/generated/flex_grow_child.rs rename to tests/generated/flex/flex_grow_child.rs diff --git a/tests/generated/flex_grow_flex_basis_percent_min_max.rs b/tests/generated/flex/flex_grow_flex_basis_percent_min_max.rs similarity index 100% rename from tests/generated/flex_grow_flex_basis_percent_min_max.rs rename to tests/generated/flex/flex_grow_flex_basis_percent_min_max.rs diff --git a/tests/generated/flex_grow_height_maximized.rs b/tests/generated/flex/flex_grow_height_maximized.rs similarity index 100% rename from tests/generated/flex_grow_height_maximized.rs rename to tests/generated/flex/flex_grow_height_maximized.rs diff --git a/tests/generated/flex_grow_in_at_most_container.rs b/tests/generated/flex/flex_grow_in_at_most_container.rs similarity index 100% rename from tests/generated/flex_grow_in_at_most_container.rs rename to tests/generated/flex/flex_grow_in_at_most_container.rs diff --git a/tests/generated/flex_grow_less_than_factor_one.rs b/tests/generated/flex/flex_grow_less_than_factor_one.rs similarity index 100% rename from tests/generated/flex_grow_less_than_factor_one.rs rename to tests/generated/flex/flex_grow_less_than_factor_one.rs diff --git a/tests/generated/flex_grow_root_minimized.rs b/tests/generated/flex/flex_grow_root_minimized.rs similarity index 100% rename from tests/generated/flex_grow_root_minimized.rs rename to tests/generated/flex/flex_grow_root_minimized.rs diff --git a/tests/generated/flex_grow_shrink_at_most.rs b/tests/generated/flex/flex_grow_shrink_at_most.rs similarity index 100% rename from tests/generated/flex_grow_shrink_at_most.rs rename to tests/generated/flex/flex_grow_shrink_at_most.rs diff --git a/tests/generated/flex_grow_to_min.rs b/tests/generated/flex/flex_grow_to_min.rs similarity index 100% rename from tests/generated/flex_grow_to_min.rs rename to tests/generated/flex/flex_grow_to_min.rs diff --git a/tests/generated/flex_grow_within_constrained_max_column.rs b/tests/generated/flex/flex_grow_within_constrained_max_column.rs similarity index 100% rename from tests/generated/flex_grow_within_constrained_max_column.rs rename to tests/generated/flex/flex_grow_within_constrained_max_column.rs diff --git a/tests/generated/flex_grow_within_constrained_max_row.rs b/tests/generated/flex/flex_grow_within_constrained_max_row.rs similarity index 100% rename from tests/generated/flex_grow_within_constrained_max_row.rs rename to tests/generated/flex/flex_grow_within_constrained_max_row.rs diff --git a/tests/generated/flex_grow_within_constrained_max_width.rs b/tests/generated/flex/flex_grow_within_constrained_max_width.rs similarity index 100% rename from tests/generated/flex_grow_within_constrained_max_width.rs rename to tests/generated/flex/flex_grow_within_constrained_max_width.rs diff --git a/tests/generated/flex_grow_within_constrained_min_column.rs b/tests/generated/flex/flex_grow_within_constrained_min_column.rs similarity index 100% rename from tests/generated/flex_grow_within_constrained_min_column.rs rename to tests/generated/flex/flex_grow_within_constrained_min_column.rs diff --git a/tests/generated/flex_grow_within_constrained_min_max_column.rs b/tests/generated/flex/flex_grow_within_constrained_min_max_column.rs similarity index 100% rename from tests/generated/flex_grow_within_constrained_min_max_column.rs rename to tests/generated/flex/flex_grow_within_constrained_min_max_column.rs diff --git a/tests/generated/flex_grow_within_constrained_min_row.rs b/tests/generated/flex/flex_grow_within_constrained_min_row.rs similarity index 100% rename from tests/generated/flex_grow_within_constrained_min_row.rs rename to tests/generated/flex/flex_grow_within_constrained_min_row.rs diff --git a/tests/generated/flex_grow_within_max_width.rs b/tests/generated/flex/flex_grow_within_max_width.rs similarity index 100% rename from tests/generated/flex_grow_within_max_width.rs rename to tests/generated/flex/flex_grow_within_max_width.rs diff --git a/tests/generated/flex_root_ignored.rs b/tests/generated/flex/flex_root_ignored.rs similarity index 100% rename from tests/generated/flex_root_ignored.rs rename to tests/generated/flex/flex_root_ignored.rs diff --git a/tests/generated/flex_row_relative_all_sides.rs b/tests/generated/flex/flex_row_relative_all_sides.rs similarity index 100% rename from tests/generated/flex_row_relative_all_sides.rs rename to tests/generated/flex/flex_row_relative_all_sides.rs diff --git a/tests/generated/flex_shrink_by_outer_margin_with_max_size.rs b/tests/generated/flex/flex_shrink_by_outer_margin_with_max_size.rs similarity index 100% rename from tests/generated/flex_shrink_by_outer_margin_with_max_size.rs rename to tests/generated/flex/flex_shrink_by_outer_margin_with_max_size.rs diff --git a/tests/generated/flex_shrink_flex_grow_child_flex_shrink_other_child.rs b/tests/generated/flex/flex_shrink_flex_grow_child_flex_shrink_other_child.rs similarity index 100% rename from tests/generated/flex_shrink_flex_grow_child_flex_shrink_other_child.rs rename to tests/generated/flex/flex_shrink_flex_grow_child_flex_shrink_other_child.rs diff --git a/tests/generated/flex_shrink_flex_grow_row.rs b/tests/generated/flex/flex_shrink_flex_grow_row.rs similarity index 100% rename from tests/generated/flex_shrink_flex_grow_row.rs rename to tests/generated/flex/flex_shrink_flex_grow_row.rs diff --git a/tests/generated/flex_shrink_to_zero.rs b/tests/generated/flex/flex_shrink_to_zero.rs similarity index 100% rename from tests/generated/flex_shrink_to_zero.rs rename to tests/generated/flex/flex_shrink_to_zero.rs diff --git a/tests/generated/flex_wrap_align_stretch_fits_one_row.rs b/tests/generated/flex/flex_wrap_align_stretch_fits_one_row.rs similarity index 100% rename from tests/generated/flex_wrap_align_stretch_fits_one_row.rs rename to tests/generated/flex/flex_wrap_align_stretch_fits_one_row.rs diff --git a/tests/generated/flex_wrap_children_with_min_main_overriding_flex_basis.rs b/tests/generated/flex/flex_wrap_children_with_min_main_overriding_flex_basis.rs similarity index 100% rename from tests/generated/flex_wrap_children_with_min_main_overriding_flex_basis.rs rename to tests/generated/flex/flex_wrap_children_with_min_main_overriding_flex_basis.rs diff --git a/tests/generated/flex_wrap_wrap_to_child_height.rs b/tests/generated/flex/flex_wrap_wrap_to_child_height.rs similarity index 100% rename from tests/generated/flex_wrap_wrap_to_child_height.rs rename to tests/generated/flex/flex_wrap_wrap_to_child_height.rs diff --git a/tests/generated/gap_column_gap_child_margins.rs b/tests/generated/flex/gap_column_gap_child_margins.rs similarity index 100% rename from tests/generated/gap_column_gap_child_margins.rs rename to tests/generated/flex/gap_column_gap_child_margins.rs diff --git a/tests/generated/gap_column_gap_determines_parent_width.rs b/tests/generated/flex/gap_column_gap_determines_parent_width.rs similarity index 100% rename from tests/generated/gap_column_gap_determines_parent_width.rs rename to tests/generated/flex/gap_column_gap_determines_parent_width.rs diff --git a/tests/generated/gap_column_gap_flexible.rs b/tests/generated/flex/gap_column_gap_flexible.rs similarity index 100% rename from tests/generated/gap_column_gap_flexible.rs rename to tests/generated/flex/gap_column_gap_flexible.rs diff --git a/tests/generated/gap_column_gap_flexible_undefined_parent.rs b/tests/generated/flex/gap_column_gap_flexible_undefined_parent.rs similarity index 100% rename from tests/generated/gap_column_gap_flexible_undefined_parent.rs rename to tests/generated/flex/gap_column_gap_flexible_undefined_parent.rs diff --git a/tests/generated/gap_column_gap_inflexible.rs b/tests/generated/flex/gap_column_gap_inflexible.rs similarity index 100% rename from tests/generated/gap_column_gap_inflexible.rs rename to tests/generated/flex/gap_column_gap_inflexible.rs diff --git a/tests/generated/gap_column_gap_inflexible_undefined_parent.rs b/tests/generated/flex/gap_column_gap_inflexible_undefined_parent.rs similarity index 100% rename from tests/generated/gap_column_gap_inflexible_undefined_parent.rs rename to tests/generated/flex/gap_column_gap_inflexible_undefined_parent.rs diff --git a/tests/generated/gap_column_gap_justify_center.rs b/tests/generated/flex/gap_column_gap_justify_center.rs similarity index 100% rename from tests/generated/gap_column_gap_justify_center.rs rename to tests/generated/flex/gap_column_gap_justify_center.rs diff --git a/tests/generated/gap_column_gap_justify_flex_end.rs b/tests/generated/flex/gap_column_gap_justify_flex_end.rs similarity index 100% rename from tests/generated/gap_column_gap_justify_flex_end.rs rename to tests/generated/flex/gap_column_gap_justify_flex_end.rs diff --git a/tests/generated/gap_column_gap_justify_flex_start.rs b/tests/generated/flex/gap_column_gap_justify_flex_start.rs similarity index 100% rename from tests/generated/gap_column_gap_justify_flex_start.rs rename to tests/generated/flex/gap_column_gap_justify_flex_start.rs diff --git a/tests/generated/gap_column_gap_justify_space_around.rs b/tests/generated/flex/gap_column_gap_justify_space_around.rs similarity index 100% rename from tests/generated/gap_column_gap_justify_space_around.rs rename to tests/generated/flex/gap_column_gap_justify_space_around.rs diff --git a/tests/generated/gap_column_gap_justify_space_between.rs b/tests/generated/flex/gap_column_gap_justify_space_between.rs similarity index 100% rename from tests/generated/gap_column_gap_justify_space_between.rs rename to tests/generated/flex/gap_column_gap_justify_space_between.rs diff --git a/tests/generated/gap_column_gap_justify_space_evenly.rs b/tests/generated/flex/gap_column_gap_justify_space_evenly.rs similarity index 100% rename from tests/generated/gap_column_gap_justify_space_evenly.rs rename to tests/generated/flex/gap_column_gap_justify_space_evenly.rs diff --git a/tests/generated/gap_column_gap_mixed_flexible.rs b/tests/generated/flex/gap_column_gap_mixed_flexible.rs similarity index 100% rename from tests/generated/gap_column_gap_mixed_flexible.rs rename to tests/generated/flex/gap_column_gap_mixed_flexible.rs diff --git a/tests/generated/gap_column_gap_percentage_cyclic_partially_shrinkable.rs b/tests/generated/flex/gap_column_gap_percentage_cyclic_partially_shrinkable.rs similarity index 100% rename from tests/generated/gap_column_gap_percentage_cyclic_partially_shrinkable.rs rename to tests/generated/flex/gap_column_gap_percentage_cyclic_partially_shrinkable.rs diff --git a/tests/generated/gap_column_gap_percentage_cyclic_shrinkable.rs b/tests/generated/flex/gap_column_gap_percentage_cyclic_shrinkable.rs similarity index 100% rename from tests/generated/gap_column_gap_percentage_cyclic_shrinkable.rs rename to tests/generated/flex/gap_column_gap_percentage_cyclic_shrinkable.rs diff --git a/tests/generated/gap_column_gap_percentage_cyclic_unshrinkable.rs b/tests/generated/flex/gap_column_gap_percentage_cyclic_unshrinkable.rs similarity index 100% rename from tests/generated/gap_column_gap_percentage_cyclic_unshrinkable.rs rename to tests/generated/flex/gap_column_gap_percentage_cyclic_unshrinkable.rs diff --git a/tests/generated/gap_column_gap_percentage_flexible.rs b/tests/generated/flex/gap_column_gap_percentage_flexible.rs similarity index 100% rename from tests/generated/gap_column_gap_percentage_flexible.rs rename to tests/generated/flex/gap_column_gap_percentage_flexible.rs diff --git a/tests/generated/gap_column_gap_percentage_flexible_with_padding.rs b/tests/generated/flex/gap_column_gap_percentage_flexible_with_padding.rs similarity index 100% rename from tests/generated/gap_column_gap_percentage_flexible_with_padding.rs rename to tests/generated/flex/gap_column_gap_percentage_flexible_with_padding.rs diff --git a/tests/generated/gap_column_gap_percentage_inflexible.rs b/tests/generated/flex/gap_column_gap_percentage_inflexible.rs similarity index 100% rename from tests/generated/gap_column_gap_percentage_inflexible.rs rename to tests/generated/flex/gap_column_gap_percentage_inflexible.rs diff --git a/tests/generated/gap_column_gap_row_gap_wrapping.rs b/tests/generated/flex/gap_column_gap_row_gap_wrapping.rs similarity index 100% rename from tests/generated/gap_column_gap_row_gap_wrapping.rs rename to tests/generated/flex/gap_column_gap_row_gap_wrapping.rs diff --git a/tests/generated/gap_column_gap_wrap_align_center.rs b/tests/generated/flex/gap_column_gap_wrap_align_center.rs similarity index 100% rename from tests/generated/gap_column_gap_wrap_align_center.rs rename to tests/generated/flex/gap_column_gap_wrap_align_center.rs diff --git a/tests/generated/gap_column_gap_wrap_align_flex_end.rs b/tests/generated/flex/gap_column_gap_wrap_align_flex_end.rs similarity index 100% rename from tests/generated/gap_column_gap_wrap_align_flex_end.rs rename to tests/generated/flex/gap_column_gap_wrap_align_flex_end.rs diff --git a/tests/generated/gap_column_gap_wrap_align_flex_start.rs b/tests/generated/flex/gap_column_gap_wrap_align_flex_start.rs similarity index 100% rename from tests/generated/gap_column_gap_wrap_align_flex_start.rs rename to tests/generated/flex/gap_column_gap_wrap_align_flex_start.rs diff --git a/tests/generated/gap_column_gap_wrap_align_space_around.rs b/tests/generated/flex/gap_column_gap_wrap_align_space_around.rs similarity index 100% rename from tests/generated/gap_column_gap_wrap_align_space_around.rs rename to tests/generated/flex/gap_column_gap_wrap_align_space_around.rs diff --git a/tests/generated/gap_column_gap_wrap_align_space_between.rs b/tests/generated/flex/gap_column_gap_wrap_align_space_between.rs similarity index 100% rename from tests/generated/gap_column_gap_wrap_align_space_between.rs rename to tests/generated/flex/gap_column_gap_wrap_align_space_between.rs diff --git a/tests/generated/gap_column_gap_wrap_align_stretch.rs b/tests/generated/flex/gap_column_gap_wrap_align_stretch.rs similarity index 100% rename from tests/generated/gap_column_gap_wrap_align_stretch.rs rename to tests/generated/flex/gap_column_gap_wrap_align_stretch.rs diff --git a/tests/generated/gap_column_row_gap_wrapping.rs b/tests/generated/flex/gap_column_row_gap_wrapping.rs similarity index 100% rename from tests/generated/gap_column_row_gap_wrapping.rs rename to tests/generated/flex/gap_column_row_gap_wrapping.rs diff --git a/tests/generated/gap_row_gap_align_items_end.rs b/tests/generated/flex/gap_row_gap_align_items_end.rs similarity index 100% rename from tests/generated/gap_row_gap_align_items_end.rs rename to tests/generated/flex/gap_row_gap_align_items_end.rs diff --git a/tests/generated/gap_row_gap_align_items_stretch.rs b/tests/generated/flex/gap_row_gap_align_items_stretch.rs similarity index 100% rename from tests/generated/gap_row_gap_align_items_stretch.rs rename to tests/generated/flex/gap_row_gap_align_items_stretch.rs diff --git a/tests/generated/gap_row_gap_column_child_margins.rs b/tests/generated/flex/gap_row_gap_column_child_margins.rs similarity index 100% rename from tests/generated/gap_row_gap_column_child_margins.rs rename to tests/generated/flex/gap_row_gap_column_child_margins.rs diff --git a/tests/generated/gap_row_gap_determines_parent_height.rs b/tests/generated/flex/gap_row_gap_determines_parent_height.rs similarity index 100% rename from tests/generated/gap_row_gap_determines_parent_height.rs rename to tests/generated/flex/gap_row_gap_determines_parent_height.rs diff --git a/tests/generated/gap_row_gap_percentage_wrapping.rs b/tests/generated/flex/gap_row_gap_percentage_wrapping.rs similarity index 100% rename from tests/generated/gap_row_gap_percentage_wrapping.rs rename to tests/generated/flex/gap_row_gap_percentage_wrapping.rs diff --git a/tests/generated/gap_row_gap_row_wrap_child_margins.rs b/tests/generated/flex/gap_row_gap_row_wrap_child_margins.rs similarity index 100% rename from tests/generated/gap_row_gap_row_wrap_child_margins.rs rename to tests/generated/flex/gap_row_gap_row_wrap_child_margins.rs diff --git a/tests/generated/intrinsic_sizing_cross_size_column.rs b/tests/generated/flex/intrinsic_sizing_cross_size_column.rs similarity index 91% rename from tests/generated/intrinsic_sizing_cross_size_column.rs rename to tests/generated/flex/intrinsic_sizing_cross_size_column.rs index 20d212bb6..7a4551d0e 100644 --- a/tests/generated/intrinsic_sizing_cross_size_column.rs +++ b/tests/generated/flex/intrinsic_sizing_cross_size_column.rs @@ -8,11 +8,11 @@ fn intrinsic_sizing_cross_size_column() { taffy::style::Style { flex_direction: taffy::style::FlexDirection::Column, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/intrinsic_sizing_main_size_column.rs b/tests/generated/flex/intrinsic_sizing_main_size_column.rs similarity index 91% rename from tests/generated/intrinsic_sizing_main_size_column.rs rename to tests/generated/flex/intrinsic_sizing_main_size_column.rs index addd589e6..113f7360c 100644 --- a/tests/generated/intrinsic_sizing_main_size_column.rs +++ b/tests/generated/flex/intrinsic_sizing_main_size_column.rs @@ -8,11 +8,11 @@ fn intrinsic_sizing_main_size_column() { taffy::style::Style { flex_direction: taffy::style::FlexDirection::Column, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Vertical, + crate::generated::WritingMode::Vertical, None, ) }), diff --git a/tests/generated/intrinsic_sizing_main_size_column_nested.rs b/tests/generated/flex/intrinsic_sizing_main_size_column_nested.rs similarity index 94% rename from tests/generated/intrinsic_sizing_main_size_column_nested.rs rename to tests/generated/flex/intrinsic_sizing_main_size_column_nested.rs index 15204c828..17872ace7 100644 --- a/tests/generated/intrinsic_sizing_main_size_column_nested.rs +++ b/tests/generated/flex/intrinsic_sizing_main_size_column_nested.rs @@ -8,11 +8,11 @@ fn intrinsic_sizing_main_size_column_nested() { taffy::style::Style { flex_direction: taffy::style::FlexDirection::Column, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Vertical, + crate::generated::WritingMode::Vertical, None, ) }), diff --git a/tests/generated/intrinsic_sizing_main_size_column_wrap.rs b/tests/generated/flex/intrinsic_sizing_main_size_column_wrap.rs similarity index 92% rename from tests/generated/intrinsic_sizing_main_size_column_wrap.rs rename to tests/generated/flex/intrinsic_sizing_main_size_column_wrap.rs index 7f2ca30cd..dc7f26855 100644 --- a/tests/generated/intrinsic_sizing_main_size_column_wrap.rs +++ b/tests/generated/flex/intrinsic_sizing_main_size_column_wrap.rs @@ -8,11 +8,11 @@ fn intrinsic_sizing_main_size_column_wrap() { taffy::style::Style { flex_direction: taffy::style::FlexDirection::Column, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Vertical, + crate::generated::WritingMode::Vertical, None, ) }), @@ -23,11 +23,11 @@ fn intrinsic_sizing_main_size_column_wrap() { taffy::style::Style { flex_direction: taffy::style::FlexDirection::Column, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Vertical, + crate::generated::WritingMode::Vertical, None, ) }), diff --git a/tests/generated/intrinsic_sizing_main_size_row.rs b/tests/generated/flex/intrinsic_sizing_main_size_row.rs similarity index 91% rename from tests/generated/intrinsic_sizing_main_size_row.rs rename to tests/generated/flex/intrinsic_sizing_main_size_row.rs index 6ce888aa4..0a94d513f 100644 --- a/tests/generated/intrinsic_sizing_main_size_row.rs +++ b/tests/generated/flex/intrinsic_sizing_main_size_row.rs @@ -8,11 +8,11 @@ fn intrinsic_sizing_main_size_row() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/intrinsic_sizing_main_size_row_nested.rs b/tests/generated/flex/intrinsic_sizing_main_size_row_nested.rs similarity index 93% rename from tests/generated/intrinsic_sizing_main_size_row_nested.rs rename to tests/generated/flex/intrinsic_sizing_main_size_row_nested.rs index 536dcd8be..ec8343eab 100644 --- a/tests/generated/intrinsic_sizing_main_size_row_nested.rs +++ b/tests/generated/flex/intrinsic_sizing_main_size_row_nested.rs @@ -8,11 +8,11 @@ fn intrinsic_sizing_main_size_row_nested() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/intrinsic_sizing_main_size_row_wrap.rs b/tests/generated/flex/intrinsic_sizing_main_size_row_wrap.rs similarity index 92% rename from tests/generated/intrinsic_sizing_main_size_row_wrap.rs rename to tests/generated/flex/intrinsic_sizing_main_size_row_wrap.rs index d5fa20102..a14f8df06 100644 --- a/tests/generated/intrinsic_sizing_main_size_row_wrap.rs +++ b/tests/generated/flex/intrinsic_sizing_main_size_row_wrap.rs @@ -8,11 +8,11 @@ fn intrinsic_sizing_main_size_row_wrap() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -23,11 +23,11 @@ fn intrinsic_sizing_main_size_row_wrap() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/justify_content_column_center.rs b/tests/generated/flex/justify_content_column_center.rs similarity index 100% rename from tests/generated/justify_content_column_center.rs rename to tests/generated/flex/justify_content_column_center.rs diff --git a/tests/generated/justify_content_column_flex_end.rs b/tests/generated/flex/justify_content_column_flex_end.rs similarity index 100% rename from tests/generated/justify_content_column_flex_end.rs rename to tests/generated/flex/justify_content_column_flex_end.rs diff --git a/tests/generated/justify_content_column_flex_start.rs b/tests/generated/flex/justify_content_column_flex_start.rs similarity index 100% rename from tests/generated/justify_content_column_flex_start.rs rename to tests/generated/flex/justify_content_column_flex_start.rs diff --git a/tests/generated/justify_content_column_max_height_and_margin.rs b/tests/generated/flex/justify_content_column_max_height_and_margin.rs similarity index 100% rename from tests/generated/justify_content_column_max_height_and_margin.rs rename to tests/generated/flex/justify_content_column_max_height_and_margin.rs diff --git a/tests/generated/justify_content_column_min_height_and_margin.rs b/tests/generated/flex/justify_content_column_min_height_and_margin.rs similarity index 100% rename from tests/generated/justify_content_column_min_height_and_margin.rs rename to tests/generated/flex/justify_content_column_min_height_and_margin.rs diff --git a/tests/generated/justify_content_column_min_height_and_margin_bottom.rs b/tests/generated/flex/justify_content_column_min_height_and_margin_bottom.rs similarity index 100% rename from tests/generated/justify_content_column_min_height_and_margin_bottom.rs rename to tests/generated/flex/justify_content_column_min_height_and_margin_bottom.rs diff --git a/tests/generated/justify_content_column_min_height_and_margin_top.rs b/tests/generated/flex/justify_content_column_min_height_and_margin_top.rs similarity index 100% rename from tests/generated/justify_content_column_min_height_and_margin_top.rs rename to tests/generated/flex/justify_content_column_min_height_and_margin_top.rs diff --git a/tests/generated/justify_content_column_space_around.rs b/tests/generated/flex/justify_content_column_space_around.rs similarity index 100% rename from tests/generated/justify_content_column_space_around.rs rename to tests/generated/flex/justify_content_column_space_around.rs diff --git a/tests/generated/justify_content_column_space_between.rs b/tests/generated/flex/justify_content_column_space_between.rs similarity index 100% rename from tests/generated/justify_content_column_space_between.rs rename to tests/generated/flex/justify_content_column_space_between.rs diff --git a/tests/generated/justify_content_column_space_evenly.rs b/tests/generated/flex/justify_content_column_space_evenly.rs similarity index 100% rename from tests/generated/justify_content_column_space_evenly.rs rename to tests/generated/flex/justify_content_column_space_evenly.rs diff --git a/tests/generated/justify_content_min_max.rs b/tests/generated/flex/justify_content_min_max.rs similarity index 100% rename from tests/generated/justify_content_min_max.rs rename to tests/generated/flex/justify_content_min_max.rs diff --git a/tests/generated/justify_content_min_width_with_padding_child_width_greater_than_parent.rs b/tests/generated/flex/justify_content_min_width_with_padding_child_width_greater_than_parent.rs similarity index 100% rename from tests/generated/justify_content_min_width_with_padding_child_width_greater_than_parent.rs rename to tests/generated/flex/justify_content_min_width_with_padding_child_width_greater_than_parent.rs diff --git a/tests/generated/justify_content_min_width_with_padding_child_width_lower_than_parent.rs b/tests/generated/flex/justify_content_min_width_with_padding_child_width_lower_than_parent.rs similarity index 100% rename from tests/generated/justify_content_min_width_with_padding_child_width_lower_than_parent.rs rename to tests/generated/flex/justify_content_min_width_with_padding_child_width_lower_than_parent.rs diff --git a/tests/generated/justify_content_overflow_min_max.rs b/tests/generated/flex/justify_content_overflow_min_max.rs similarity index 100% rename from tests/generated/justify_content_overflow_min_max.rs rename to tests/generated/flex/justify_content_overflow_min_max.rs diff --git a/tests/generated/justify_content_row_center.rs b/tests/generated/flex/justify_content_row_center.rs similarity index 100% rename from tests/generated/justify_content_row_center.rs rename to tests/generated/flex/justify_content_row_center.rs diff --git a/tests/generated/justify_content_row_flex_end.rs b/tests/generated/flex/justify_content_row_flex_end.rs similarity index 100% rename from tests/generated/justify_content_row_flex_end.rs rename to tests/generated/flex/justify_content_row_flex_end.rs diff --git a/tests/generated/justify_content_row_flex_start.rs b/tests/generated/flex/justify_content_row_flex_start.rs similarity index 100% rename from tests/generated/justify_content_row_flex_start.rs rename to tests/generated/flex/justify_content_row_flex_start.rs diff --git a/tests/generated/justify_content_row_max_width_and_margin.rs b/tests/generated/flex/justify_content_row_max_width_and_margin.rs similarity index 100% rename from tests/generated/justify_content_row_max_width_and_margin.rs rename to tests/generated/flex/justify_content_row_max_width_and_margin.rs diff --git a/tests/generated/justify_content_row_min_width_and_margin.rs b/tests/generated/flex/justify_content_row_min_width_and_margin.rs similarity index 100% rename from tests/generated/justify_content_row_min_width_and_margin.rs rename to tests/generated/flex/justify_content_row_min_width_and_margin.rs diff --git a/tests/generated/justify_content_row_space_around.rs b/tests/generated/flex/justify_content_row_space_around.rs similarity index 100% rename from tests/generated/justify_content_row_space_around.rs rename to tests/generated/flex/justify_content_row_space_around.rs diff --git a/tests/generated/justify_content_row_space_between.rs b/tests/generated/flex/justify_content_row_space_between.rs similarity index 100% rename from tests/generated/justify_content_row_space_between.rs rename to tests/generated/flex/justify_content_row_space_between.rs diff --git a/tests/generated/justify_content_row_space_evenly.rs b/tests/generated/flex/justify_content_row_space_evenly.rs similarity index 100% rename from tests/generated/justify_content_row_space_evenly.rs rename to tests/generated/flex/justify_content_row_space_evenly.rs diff --git a/tests/generated/margin_and_flex_column.rs b/tests/generated/flex/margin_and_flex_column.rs similarity index 100% rename from tests/generated/margin_and_flex_column.rs rename to tests/generated/flex/margin_and_flex_column.rs diff --git a/tests/generated/margin_and_flex_row.rs b/tests/generated/flex/margin_and_flex_row.rs similarity index 100% rename from tests/generated/margin_and_flex_row.rs rename to tests/generated/flex/margin_and_flex_row.rs diff --git a/tests/generated/margin_and_stretch_column.rs b/tests/generated/flex/margin_and_stretch_column.rs similarity index 100% rename from tests/generated/margin_and_stretch_column.rs rename to tests/generated/flex/margin_and_stretch_column.rs diff --git a/tests/generated/margin_and_stretch_row.rs b/tests/generated/flex/margin_and_stretch_row.rs similarity index 100% rename from tests/generated/margin_and_stretch_row.rs rename to tests/generated/flex/margin_and_stretch_row.rs diff --git a/tests/generated/margin_auto_bottom.rs b/tests/generated/flex/margin_auto_bottom.rs similarity index 100% rename from tests/generated/margin_auto_bottom.rs rename to tests/generated/flex/margin_auto_bottom.rs diff --git a/tests/generated/margin_auto_bottom_and_top.rs b/tests/generated/flex/margin_auto_bottom_and_top.rs similarity index 100% rename from tests/generated/margin_auto_bottom_and_top.rs rename to tests/generated/flex/margin_auto_bottom_and_top.rs diff --git a/tests/generated/margin_auto_bottom_and_top_justify_center.rs b/tests/generated/flex/margin_auto_bottom_and_top_justify_center.rs similarity index 100% rename from tests/generated/margin_auto_bottom_and_top_justify_center.rs rename to tests/generated/flex/margin_auto_bottom_and_top_justify_center.rs diff --git a/tests/generated/margin_auto_left.rs b/tests/generated/flex/margin_auto_left.rs similarity index 100% rename from tests/generated/margin_auto_left.rs rename to tests/generated/flex/margin_auto_left.rs diff --git a/tests/generated/margin_auto_left_and_right.rs b/tests/generated/flex/margin_auto_left_and_right.rs similarity index 100% rename from tests/generated/margin_auto_left_and_right.rs rename to tests/generated/flex/margin_auto_left_and_right.rs diff --git a/tests/generated/margin_auto_left_and_right_column.rs b/tests/generated/flex/margin_auto_left_and_right_column.rs similarity index 100% rename from tests/generated/margin_auto_left_and_right_column.rs rename to tests/generated/flex/margin_auto_left_and_right_column.rs diff --git a/tests/generated/margin_auto_left_and_right_column_and_center.rs b/tests/generated/flex/margin_auto_left_and_right_column_and_center.rs similarity index 100% rename from tests/generated/margin_auto_left_and_right_column_and_center.rs rename to tests/generated/flex/margin_auto_left_and_right_column_and_center.rs diff --git a/tests/generated/margin_auto_left_and_right_stretch.rs b/tests/generated/flex/margin_auto_left_and_right_stretch.rs similarity index 100% rename from tests/generated/margin_auto_left_and_right_stretch.rs rename to tests/generated/flex/margin_auto_left_and_right_stretch.rs diff --git a/tests/generated/margin_auto_left_child_bigger_than_parent.rs b/tests/generated/flex/margin_auto_left_child_bigger_than_parent.rs similarity index 100% rename from tests/generated/margin_auto_left_child_bigger_than_parent.rs rename to tests/generated/flex/margin_auto_left_child_bigger_than_parent.rs diff --git a/tests/generated/margin_auto_left_fix_right_child_bigger_than_parent.rs b/tests/generated/flex/margin_auto_left_fix_right_child_bigger_than_parent.rs similarity index 100% rename from tests/generated/margin_auto_left_fix_right_child_bigger_than_parent.rs rename to tests/generated/flex/margin_auto_left_fix_right_child_bigger_than_parent.rs diff --git a/tests/generated/margin_auto_left_right_child_bigger_than_parent.rs b/tests/generated/flex/margin_auto_left_right_child_bigger_than_parent.rs similarity index 100% rename from tests/generated/margin_auto_left_right_child_bigger_than_parent.rs rename to tests/generated/flex/margin_auto_left_right_child_bigger_than_parent.rs diff --git a/tests/generated/margin_auto_left_stretching_child.rs b/tests/generated/flex/margin_auto_left_stretching_child.rs similarity index 100% rename from tests/generated/margin_auto_left_stretching_child.rs rename to tests/generated/flex/margin_auto_left_stretching_child.rs diff --git a/tests/generated/margin_auto_mutiple_children_column.rs b/tests/generated/flex/margin_auto_mutiple_children_column.rs similarity index 100% rename from tests/generated/margin_auto_mutiple_children_column.rs rename to tests/generated/flex/margin_auto_mutiple_children_column.rs diff --git a/tests/generated/margin_auto_mutiple_children_row.rs b/tests/generated/flex/margin_auto_mutiple_children_row.rs similarity index 100% rename from tests/generated/margin_auto_mutiple_children_row.rs rename to tests/generated/flex/margin_auto_mutiple_children_row.rs diff --git a/tests/generated/margin_auto_right.rs b/tests/generated/flex/margin_auto_right.rs similarity index 100% rename from tests/generated/margin_auto_right.rs rename to tests/generated/flex/margin_auto_right.rs diff --git a/tests/generated/margin_auto_top.rs b/tests/generated/flex/margin_auto_top.rs similarity index 100% rename from tests/generated/margin_auto_top.rs rename to tests/generated/flex/margin_auto_top.rs diff --git a/tests/generated/margin_auto_top_and_bottom_stretch.rs b/tests/generated/flex/margin_auto_top_and_bottom_stretch.rs similarity index 100% rename from tests/generated/margin_auto_top_and_bottom_stretch.rs rename to tests/generated/flex/margin_auto_top_and_bottom_stretch.rs diff --git a/tests/generated/margin_auto_top_stretching_child.rs b/tests/generated/flex/margin_auto_top_stretching_child.rs similarity index 100% rename from tests/generated/margin_auto_top_stretching_child.rs rename to tests/generated/flex/margin_auto_top_stretching_child.rs diff --git a/tests/generated/margin_bottom.rs b/tests/generated/flex/margin_bottom.rs similarity index 100% rename from tests/generated/margin_bottom.rs rename to tests/generated/flex/margin_bottom.rs diff --git a/tests/generated/margin_fix_left_auto_right_child_bigger_than_parent.rs b/tests/generated/flex/margin_fix_left_auto_right_child_bigger_than_parent.rs similarity index 100% rename from tests/generated/margin_fix_left_auto_right_child_bigger_than_parent.rs rename to tests/generated/flex/margin_fix_left_auto_right_child_bigger_than_parent.rs diff --git a/tests/generated/margin_left.rs b/tests/generated/flex/margin_left.rs similarity index 100% rename from tests/generated/margin_left.rs rename to tests/generated/flex/margin_left.rs diff --git a/tests/generated/margin_right.rs b/tests/generated/flex/margin_right.rs similarity index 100% rename from tests/generated/margin_right.rs rename to tests/generated/flex/margin_right.rs diff --git a/tests/generated/margin_should_not_be_part_of_max_height.rs b/tests/generated/flex/margin_should_not_be_part_of_max_height.rs similarity index 100% rename from tests/generated/margin_should_not_be_part_of_max_height.rs rename to tests/generated/flex/margin_should_not_be_part_of_max_height.rs diff --git a/tests/generated/margin_should_not_be_part_of_max_width.rs b/tests/generated/flex/margin_should_not_be_part_of_max_width.rs similarity index 100% rename from tests/generated/margin_should_not_be_part_of_max_width.rs rename to tests/generated/flex/margin_should_not_be_part_of_max_width.rs diff --git a/tests/generated/margin_top.rs b/tests/generated/flex/margin_top.rs similarity index 100% rename from tests/generated/margin_top.rs rename to tests/generated/flex/margin_top.rs diff --git a/tests/generated/margin_with_sibling_column.rs b/tests/generated/flex/margin_with_sibling_column.rs similarity index 100% rename from tests/generated/margin_with_sibling_column.rs rename to tests/generated/flex/margin_with_sibling_column.rs diff --git a/tests/generated/margin_with_sibling_row.rs b/tests/generated/flex/margin_with_sibling_row.rs similarity index 100% rename from tests/generated/margin_with_sibling_row.rs rename to tests/generated/flex/margin_with_sibling_row.rs diff --git a/tests/generated/max_height.rs b/tests/generated/flex/max_height.rs similarity index 100% rename from tests/generated/max_height.rs rename to tests/generated/flex/max_height.rs diff --git a/tests/generated/max_height_overrides_height.rs b/tests/generated/flex/max_height_overrides_height.rs similarity index 100% rename from tests/generated/max_height_overrides_height.rs rename to tests/generated/flex/max_height_overrides_height.rs diff --git a/tests/generated/max_height_overrides_height_on_root.rs b/tests/generated/flex/max_height_overrides_height_on_root.rs similarity index 100% rename from tests/generated/max_height_overrides_height_on_root.rs rename to tests/generated/flex/max_height_overrides_height_on_root.rs diff --git a/tests/generated/max_width.rs b/tests/generated/flex/max_width.rs similarity index 100% rename from tests/generated/max_width.rs rename to tests/generated/flex/max_width.rs diff --git a/tests/generated/max_width_overrides_width.rs b/tests/generated/flex/max_width_overrides_width.rs similarity index 100% rename from tests/generated/max_width_overrides_width.rs rename to tests/generated/flex/max_width_overrides_width.rs diff --git a/tests/generated/max_width_overrides_width_on_root.rs b/tests/generated/flex/max_width_overrides_width_on_root.rs similarity index 100% rename from tests/generated/max_width_overrides_width_on_root.rs rename to tests/generated/flex/max_width_overrides_width_on_root.rs diff --git a/tests/generated/measure_child.rs b/tests/generated/flex/measure_child.rs similarity index 93% rename from tests/generated/measure_child.rs rename to tests/generated/flex/measure_child.rs index d28b97794..e8e0ccef9 100644 --- a/tests/generated/measure_child.rs +++ b/tests/generated/flex/measure_child.rs @@ -8,11 +8,11 @@ fn measure_child() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/measure_child_absolute.rs b/tests/generated/flex/measure_child_absolute.rs similarity index 94% rename from tests/generated/measure_child_absolute.rs rename to tests/generated/flex/measure_child_absolute.rs index b90d4c842..cd5bd5295 100644 --- a/tests/generated/measure_child_absolute.rs +++ b/tests/generated/flex/measure_child_absolute.rs @@ -8,11 +8,11 @@ fn measure_child_absolute() { taffy::style::Style { position: taffy::style::Position::Absolute, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/measure_child_constraint.rs b/tests/generated/flex/measure_child_constraint.rs similarity index 89% rename from tests/generated/measure_child_constraint.rs rename to tests/generated/flex/measure_child_constraint.rs index 88cb3ddb9..716227f14 100644 --- a/tests/generated/measure_child_constraint.rs +++ b/tests/generated/flex/measure_child_constraint.rs @@ -3,7 +3,7 @@ fn measure_child_constraint() { #[allow(unused_imports)] use taffy::{prelude::*, tree::Layout}; let mut taffy = taffy::Taffy::new(); - let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH" ; super :: measure_standard_text (known_dimensions , available_space , TEXT , super :: WritingMode :: Horizontal , None) }) ,) . unwrap () ; + let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH" ; crate :: generated :: measure_standard_text (known_dimensions , available_space , TEXT , crate :: generated :: WritingMode :: Horizontal , None) }) ,) . unwrap () ; let node = taffy .new_with_children( taffy::style::Style { diff --git a/tests/generated/measure_child_constraint_padding_parent.rs b/tests/generated/flex/measure_child_constraint_padding_parent.rs similarity index 91% rename from tests/generated/measure_child_constraint_padding_parent.rs rename to tests/generated/flex/measure_child_constraint_padding_parent.rs index f12dfd345..3c1bf280f 100644 --- a/tests/generated/measure_child_constraint_padding_parent.rs +++ b/tests/generated/flex/measure_child_constraint_padding_parent.rs @@ -3,7 +3,7 @@ fn measure_child_constraint_padding_parent() { #[allow(unused_imports)] use taffy::{prelude::*, tree::Layout}; let mut taffy = taffy::Taffy::new(); - let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH" ; super :: measure_standard_text (known_dimensions , available_space , TEXT , super :: WritingMode :: Horizontal , None) }) ,) . unwrap () ; + let node0 = taffy . new_leaf_with_measure (taffy :: style :: Style { .. Default :: default () } , taffy :: tree :: MeasureFunc :: Raw (| known_dimensions , available_space | { const TEXT : & str = "HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH" ; crate :: generated :: measure_standard_text (known_dimensions , available_space , TEXT , crate :: generated :: WritingMode :: Horizontal , None) }) ,) . unwrap () ; let node = taffy .new_with_children( taffy::style::Style { diff --git a/tests/generated/measure_child_with_flex_grow.rs b/tests/generated/flex/measure_child_with_flex_grow.rs similarity index 96% rename from tests/generated/measure_child_with_flex_grow.rs rename to tests/generated/flex/measure_child_with_flex_grow.rs index 4b95b55a6..fedcb0fc7 100644 --- a/tests/generated/measure_child_with_flex_grow.rs +++ b/tests/generated/flex/measure_child_with_flex_grow.rs @@ -17,11 +17,11 @@ fn measure_child_with_flex_grow() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "H\u{200b}H\u{200b}H\u{200b}H\u{200b}H"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/measure_child_with_flex_shrink.rs b/tests/generated/flex/measure_child_with_flex_shrink.rs similarity index 96% rename from tests/generated/measure_child_with_flex_shrink.rs rename to tests/generated/flex/measure_child_with_flex_shrink.rs index 705b4e980..01e3675ec 100644 --- a/tests/generated/measure_child_with_flex_shrink.rs +++ b/tests/generated/flex/measure_child_with_flex_shrink.rs @@ -17,11 +17,11 @@ fn measure_child_with_flex_shrink() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/measure_child_with_flex_shrink_hidden.rs b/tests/generated/flex/measure_child_with_flex_shrink_hidden.rs similarity index 96% rename from tests/generated/measure_child_with_flex_shrink_hidden.rs rename to tests/generated/flex/measure_child_with_flex_shrink_hidden.rs index aa5462987..4bf832566 100644 --- a/tests/generated/measure_child_with_flex_shrink_hidden.rs +++ b/tests/generated/flex/measure_child_with_flex_shrink_hidden.rs @@ -24,11 +24,11 @@ fn measure_child_with_flex_shrink_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH\u{200b}HHHHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/measure_child_with_min_size_greater_than_available_space.rs b/tests/generated/flex/measure_child_with_min_size_greater_than_available_space.rs similarity index 95% rename from tests/generated/measure_child_with_min_size_greater_than_available_space.rs rename to tests/generated/flex/measure_child_with_min_size_greater_than_available_space.rs index 505f3299a..05905cf6a 100644 --- a/tests/generated/measure_child_with_min_size_greater_than_available_space.rs +++ b/tests/generated/flex/measure_child_with_min_size_greater_than_available_space.rs @@ -11,11 +11,11 @@ fn measure_child_with_min_size_greater_than_available_space() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHH\u{200b}HHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/measure_flex_basis_overrides_measure.rs b/tests/generated/flex/measure_flex_basis_overrides_measure.rs similarity index 94% rename from tests/generated/measure_flex_basis_overrides_measure.rs rename to tests/generated/flex/measure_flex_basis_overrides_measure.rs index 50c56930d..9eda7f2b1 100644 --- a/tests/generated/measure_flex_basis_overrides_measure.rs +++ b/tests/generated/flex/measure_flex_basis_overrides_measure.rs @@ -8,11 +8,11 @@ fn measure_flex_basis_overrides_measure() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "H"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/measure_height_overrides_measure.rs b/tests/generated/flex/measure_height_overrides_measure.rs similarity index 94% rename from tests/generated/measure_height_overrides_measure.rs rename to tests/generated/flex/measure_height_overrides_measure.rs index 24a30e81d..b127fb8ca 100644 --- a/tests/generated/measure_height_overrides_measure.rs +++ b/tests/generated/flex/measure_height_overrides_measure.rs @@ -11,11 +11,11 @@ fn measure_height_overrides_measure() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "H"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/measure_remeasure_child_after_growing.rs b/tests/generated/flex/measure_remeasure_child_after_growing.rs similarity index 96% rename from tests/generated/measure_remeasure_child_after_growing.rs rename to tests/generated/flex/measure_remeasure_child_after_growing.rs index 9be61a920..d2653bc90 100644 --- a/tests/generated/measure_remeasure_child_after_growing.rs +++ b/tests/generated/flex/measure_remeasure_child_after_growing.rs @@ -17,11 +17,11 @@ fn measure_remeasure_child_after_growing() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/measure_remeasure_child_after_shrinking.rs b/tests/generated/flex/measure_remeasure_child_after_shrinking.rs similarity index 96% rename from tests/generated/measure_remeasure_child_after_shrinking.rs rename to tests/generated/flex/measure_remeasure_child_after_shrinking.rs index b445d05d9..d99fa1aa6 100644 --- a/tests/generated/measure_remeasure_child_after_shrinking.rs +++ b/tests/generated/flex/measure_remeasure_child_after_shrinking.rs @@ -18,11 +18,11 @@ fn measure_remeasure_child_after_shrinking() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/measure_remeasure_child_after_stretching.rs b/tests/generated/flex/measure_remeasure_child_after_stretching.rs similarity index 94% rename from tests/generated/measure_remeasure_child_after_stretching.rs rename to tests/generated/flex/measure_remeasure_child_after_stretching.rs index 3b7a3d9e9..ee40a1bef 100644 --- a/tests/generated/measure_remeasure_child_after_stretching.rs +++ b/tests/generated/flex/measure_remeasure_child_after_stretching.rs @@ -8,11 +8,11 @@ fn measure_remeasure_child_after_stretching() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/measure_root.rs b/tests/generated/flex/measure_root.rs similarity index 91% rename from tests/generated/measure_root.rs rename to tests/generated/flex/measure_root.rs index f4e80281a..5195add4d 100644 --- a/tests/generated/measure_root.rs +++ b/tests/generated/flex/measure_root.rs @@ -8,11 +8,11 @@ fn measure_root() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/measure_stretch_overrides_measure.rs b/tests/generated/flex/measure_stretch_overrides_measure.rs similarity index 96% rename from tests/generated/measure_stretch_overrides_measure.rs rename to tests/generated/flex/measure_stretch_overrides_measure.rs index 2b18c8909..ac4817beb 100644 --- a/tests/generated/measure_stretch_overrides_measure.rs +++ b/tests/generated/flex/measure_stretch_overrides_measure.rs @@ -19,11 +19,11 @@ fn measure_stretch_overrides_measure() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "H"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/measure_width_overrides_measure.rs b/tests/generated/flex/measure_width_overrides_measure.rs similarity index 94% rename from tests/generated/measure_width_overrides_measure.rs rename to tests/generated/flex/measure_width_overrides_measure.rs index af3d30259..123e36828 100644 --- a/tests/generated/measure_width_overrides_measure.rs +++ b/tests/generated/flex/measure_width_overrides_measure.rs @@ -11,11 +11,11 @@ fn measure_width_overrides_measure() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/min_height.rs b/tests/generated/flex/min_height.rs similarity index 100% rename from tests/generated/min_height.rs rename to tests/generated/flex/min_height.rs diff --git a/tests/generated/min_height_larger_than_height.rs b/tests/generated/flex/min_height_larger_than_height.rs similarity index 100% rename from tests/generated/min_height_larger_than_height.rs rename to tests/generated/flex/min_height_larger_than_height.rs diff --git a/tests/generated/min_height_overrides_height.rs b/tests/generated/flex/min_height_overrides_height.rs similarity index 100% rename from tests/generated/min_height_overrides_height.rs rename to tests/generated/flex/min_height_overrides_height.rs diff --git a/tests/generated/min_height_overrides_height_on_root.rs b/tests/generated/flex/min_height_overrides_height_on_root.rs similarity index 100% rename from tests/generated/min_height_overrides_height_on_root.rs rename to tests/generated/flex/min_height_overrides_height_on_root.rs diff --git a/tests/generated/min_height_overrides_max_height.rs b/tests/generated/flex/min_height_overrides_max_height.rs similarity index 100% rename from tests/generated/min_height_overrides_max_height.rs rename to tests/generated/flex/min_height_overrides_max_height.rs diff --git a/tests/generated/min_height_with_nested_fixed_height.rs b/tests/generated/flex/min_height_with_nested_fixed_height.rs similarity index 100% rename from tests/generated/min_height_with_nested_fixed_height.rs rename to tests/generated/flex/min_height_with_nested_fixed_height.rs diff --git a/tests/generated/min_max_percent_different_width_height.rs b/tests/generated/flex/min_max_percent_different_width_height.rs similarity index 95% rename from tests/generated/min_max_percent_different_width_height.rs rename to tests/generated/flex/min_max_percent_different_width_height.rs index 585a10991..29e069672 100644 --- a/tests/generated/min_max_percent_different_width_height.rs +++ b/tests/generated/flex/min_max_percent_different_width_height.rs @@ -18,11 +18,11 @@ fn min_max_percent_different_width_height() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "\n "; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/min_max_percent_no_width_height.rs b/tests/generated/flex/min_max_percent_no_width_height.rs similarity index 100% rename from tests/generated/min_max_percent_no_width_height.rs rename to tests/generated/flex/min_max_percent_no_width_height.rs diff --git a/tests/generated/min_width.rs b/tests/generated/flex/min_width.rs similarity index 100% rename from tests/generated/min_width.rs rename to tests/generated/flex/min_width.rs diff --git a/tests/generated/min_width_larger_than_width.rs b/tests/generated/flex/min_width_larger_than_width.rs similarity index 100% rename from tests/generated/min_width_larger_than_width.rs rename to tests/generated/flex/min_width_larger_than_width.rs diff --git a/tests/generated/min_width_overrides_max_width.rs b/tests/generated/flex/min_width_overrides_max_width.rs similarity index 100% rename from tests/generated/min_width_overrides_max_width.rs rename to tests/generated/flex/min_width_overrides_max_width.rs diff --git a/tests/generated/min_width_overrides_width.rs b/tests/generated/flex/min_width_overrides_width.rs similarity index 100% rename from tests/generated/min_width_overrides_width.rs rename to tests/generated/flex/min_width_overrides_width.rs diff --git a/tests/generated/min_width_overrides_width_on_root.rs b/tests/generated/flex/min_width_overrides_width_on_root.rs similarity index 100% rename from tests/generated/min_width_overrides_width_on_root.rs rename to tests/generated/flex/min_width_overrides_width_on_root.rs diff --git a/tests/generated/flex/mod.rs b/tests/generated/flex/mod.rs new file mode 100644 index 000000000..d80105ba7 --- /dev/null +++ b/tests/generated/flex/mod.rs @@ -0,0 +1,456 @@ +mod absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset; +mod absolute_aspect_ratio_fill_height; +mod absolute_aspect_ratio_fill_height_from_inset; +mod absolute_aspect_ratio_fill_max_height; +mod absolute_aspect_ratio_fill_max_width; +mod absolute_aspect_ratio_fill_min_height; +mod absolute_aspect_ratio_fill_min_width; +mod absolute_aspect_ratio_fill_width; +mod absolute_aspect_ratio_fill_width_from_inset; +mod absolute_aspect_ratio_height_overrides_inset; +mod absolute_aspect_ratio_width_overrides_inset; +mod absolute_child_with_cross_margin; +mod absolute_child_with_main_margin; +mod absolute_child_with_max_height; +mod absolute_child_with_max_height_larger_shrinkable_grandchild; +mod absolute_layout_align_items_and_justify_content_center; +mod absolute_layout_align_items_and_justify_content_center_and_bottom_position; +mod absolute_layout_align_items_and_justify_content_center_and_left_position; +mod absolute_layout_align_items_and_justify_content_center_and_right_position; +mod absolute_layout_align_items_and_justify_content_center_and_top_position; +mod absolute_layout_align_items_and_justify_content_flex_end; +mod absolute_layout_align_items_center; +mod absolute_layout_align_items_center_on_child_only; +mod absolute_layout_child_order; +mod absolute_layout_in_wrap_reverse_column_container; +mod absolute_layout_in_wrap_reverse_column_container_flex_end; +mod absolute_layout_in_wrap_reverse_row_container; +mod absolute_layout_in_wrap_reverse_row_container_flex_end; +mod absolute_layout_justify_content_center; +mod absolute_layout_no_size; +mod absolute_layout_percentage_bottom_based_on_parent_height; +mod absolute_layout_percentage_height; +mod absolute_layout_row_width_height_end_bottom; +mod absolute_layout_start_top_end_bottom; +mod absolute_layout_width_height_end_bottom; +mod absolute_layout_width_height_start_top; +mod absolute_layout_width_height_start_top_end_bottom; +mod absolute_layout_within_border; +mod absolute_margin_bottom_left; +mod absolute_minmax_bottom_right_max; +mod absolute_minmax_bottom_right_min_max; +mod absolute_minmax_bottom_right_min_max_preferred; +mod absolute_minmax_top_left_bottom_right_max; +mod absolute_minmax_top_left_bottom_right_min_max; +mod absolute_padding_border_overrides_max_size; +mod absolute_padding_border_overrides_size; +mod align_baseline; +mod align_baseline_child; +mod align_baseline_child_margin; +mod align_baseline_child_margin_percent; +mod align_baseline_child_multiline; +mod align_baseline_child_multiline_no_override_on_secondline; +mod align_baseline_child_multiline_override; +mod align_baseline_child_padding; +mod align_baseline_child_top; +mod align_baseline_child_top2; +mod align_baseline_column; +mod align_baseline_double_nested_child; +mod align_baseline_multiline; +mod align_baseline_multiline_column; +mod align_baseline_multiline_column2; +mod align_baseline_multiline_row_and_column; +mod align_baseline_nested_child; +mod align_baseline_nested_column; +mod align_center_should_size_based_on_content; +mod align_content_flex_end; +mod align_content_flex_start; +mod align_content_flex_start_with_flex; +mod align_content_flex_start_without_height_on_children; +mod align_content_not_stretch_with_align_items_stretch; +mod align_content_space_around_single_line; +mod align_content_space_around_wrapped; +mod align_content_space_between_single_line; +mod align_content_space_between_wrapped; +mod align_content_space_evenly_single_line; +mod align_content_space_evenly_wrapped; +mod align_content_spacearound; +mod align_content_spacebetween; +mod align_content_stretch; +mod align_content_stretch_column; +mod align_content_stretch_is_not_overriding_align_items; +mod align_content_stretch_row; +mod align_content_stretch_row_with_children; +mod align_content_stretch_row_with_fixed_height; +mod align_content_stretch_row_with_flex; +mod align_content_stretch_row_with_flex_no_shrink; +mod align_content_stretch_row_with_margin; +mod align_content_stretch_row_with_max_height; +mod align_content_stretch_row_with_min_height; +mod align_content_stretch_row_with_padding; +mod align_content_stretch_row_with_single_row; +mod align_flex_start_with_shrinking_children; +mod align_flex_start_with_shrinking_children_with_stretch; +mod align_flex_start_with_stretching_children; +mod align_items_center; +mod align_items_center_child_with_margin_bigger_than_parent; +mod align_items_center_child_without_margin_bigger_than_parent; +mod align_items_center_justify_content_center; +mod align_items_center_min_max_with_padding; +mod align_items_center_with_child_margin; +mod align_items_center_with_child_top; +mod align_items_flex_end; +mod align_items_flex_end_child_with_margin_bigger_than_parent; +mod align_items_flex_end_child_without_margin_bigger_than_parent; +mod align_items_flex_start; +mod align_items_min_max; +mod align_items_stretch; +mod align_items_stretch_min_cross; +mod align_self_baseline; +mod align_self_center; +mod align_self_center_undefined_max_height; +mod align_self_flex_end; +mod align_self_flex_end_override_flex_start; +mod align_self_flex_start; +mod align_stretch_should_size_based_on_parent; +mod android_news_feed; +mod aspect_ratio_flex_column_fill_height; +mod aspect_ratio_flex_column_fill_max_height; +mod aspect_ratio_flex_column_fill_max_width; +mod aspect_ratio_flex_column_fill_min_height; +mod aspect_ratio_flex_column_fill_min_width; +mod aspect_ratio_flex_column_fill_width; +mod aspect_ratio_flex_column_fill_width_flex; +mod aspect_ratio_flex_column_stretch_fill_height; +mod aspect_ratio_flex_column_stretch_fill_max_height; +mod aspect_ratio_flex_column_stretch_fill_max_width; +mod aspect_ratio_flex_column_stretch_fill_width; +mod aspect_ratio_flex_row_fill_height; +mod aspect_ratio_flex_row_fill_max_height; +mod aspect_ratio_flex_row_fill_max_width; +mod aspect_ratio_flex_row_fill_min_height; +mod aspect_ratio_flex_row_fill_min_width; +mod aspect_ratio_flex_row_fill_width; +mod aspect_ratio_flex_row_fill_width_flex; +mod aspect_ratio_flex_row_stretch_fill_height; +mod aspect_ratio_flex_row_stretch_fill_max_height; +mod aspect_ratio_flex_row_stretch_fill_max_width; +mod aspect_ratio_flex_row_stretch_fill_width; +mod bevy_issue_7976_3_level; +mod bevy_issue_7976_4_level; +mod bevy_issue_7976_reduced; +mod bevy_issue_8017; +mod bevy_issue_8017_reduced; +mod bevy_issue_8082; +mod bevy_issue_8082_percent; +mod bevy_issue_9530; +mod bevy_issue_9530_reduced; +mod bevy_issue_9530_reduced2; +mod bevy_issue_9530_reduced3; +mod bevy_issue_9530_reduced4; +mod border_center_child; +mod border_container_match_child; +mod border_flex_child; +mod border_no_child; +mod border_no_size; +mod border_stretch_child; +mod child_min_max_width_flexing; +mod child_with_padding_align_end; +mod container_with_unsized_child; +mod display_none; +mod display_none_absolute_child; +mod display_none_fixed_size; +mod display_none_only_node; +mod display_none_with_child; +mod display_none_with_margin; +mod display_none_with_position; +mod display_none_with_position_absolute; +mod do_not_clamp_height_of_absolute_node_to_height_of_its_overflow_hidden_parent; +mod flex_basis_and_main_dimen_set_when_flexing; +mod flex_basis_flex_grow_column; +mod flex_basis_flex_grow_row; +mod flex_basis_flex_shrink_column; +mod flex_basis_flex_shrink_row; +mod flex_basis_larger_than_content_column; +mod flex_basis_larger_than_content_row; +mod flex_basis_overrides_main_size; +mod flex_basis_slightly_smaller_then_content_with_flex_grow_large_size; +mod flex_basis_smaller_than_content_column; +mod flex_basis_smaller_than_content_row; +mod flex_basis_smaller_than_main_dimen_column; +mod flex_basis_smaller_than_main_dimen_row; +mod flex_basis_smaller_then_content_with_flex_grow_large_size; +mod flex_basis_smaller_then_content_with_flex_grow_small_size; +mod flex_basis_smaller_then_content_with_flex_grow_unconstraint_size; +mod flex_basis_smaller_then_content_with_flex_grow_very_large_size; +mod flex_basis_unconstraint_column; +mod flex_basis_unconstraint_row; +mod flex_basis_zero_undefined_main_size; +mod flex_column_relative_all_sides; +mod flex_direction_column; +mod flex_direction_column_no_height; +mod flex_direction_column_reverse; +mod flex_direction_column_reverse_no_height; +mod flex_direction_row; +mod flex_direction_row_no_width; +mod flex_direction_row_reverse; +mod flex_grow_child; +mod flex_grow_flex_basis_percent_min_max; +mod flex_grow_height_maximized; +mod flex_grow_in_at_most_container; +mod flex_grow_less_than_factor_one; +mod flex_grow_root_minimized; +mod flex_grow_shrink_at_most; +mod flex_grow_to_min; +mod flex_grow_within_constrained_max_column; +mod flex_grow_within_constrained_max_row; +mod flex_grow_within_constrained_max_width; +mod flex_grow_within_constrained_min_column; +mod flex_grow_within_constrained_min_max_column; +mod flex_grow_within_constrained_min_row; +mod flex_grow_within_max_width; +mod flex_root_ignored; +mod flex_row_relative_all_sides; +mod flex_shrink_by_outer_margin_with_max_size; +mod flex_shrink_flex_grow_child_flex_shrink_other_child; +mod flex_shrink_flex_grow_row; +mod flex_shrink_to_zero; +mod flex_wrap_align_stretch_fits_one_row; +mod flex_wrap_children_with_min_main_overriding_flex_basis; +mod flex_wrap_wrap_to_child_height; +mod gap_column_gap_child_margins; +mod gap_column_gap_determines_parent_width; +mod gap_column_gap_flexible; +mod gap_column_gap_flexible_undefined_parent; +mod gap_column_gap_inflexible; +mod gap_column_gap_inflexible_undefined_parent; +mod gap_column_gap_justify_center; +mod gap_column_gap_justify_flex_end; +mod gap_column_gap_justify_flex_start; +mod gap_column_gap_justify_space_around; +mod gap_column_gap_justify_space_between; +mod gap_column_gap_justify_space_evenly; +mod gap_column_gap_mixed_flexible; +mod gap_column_gap_percentage_cyclic_partially_shrinkable; +mod gap_column_gap_percentage_cyclic_shrinkable; +mod gap_column_gap_percentage_cyclic_unshrinkable; +mod gap_column_gap_percentage_flexible; +mod gap_column_gap_percentage_flexible_with_padding; +mod gap_column_gap_percentage_inflexible; +mod gap_column_gap_row_gap_wrapping; +mod gap_column_gap_wrap_align_center; +mod gap_column_gap_wrap_align_flex_end; +mod gap_column_gap_wrap_align_flex_start; +mod gap_column_gap_wrap_align_space_around; +mod gap_column_gap_wrap_align_space_between; +mod gap_column_gap_wrap_align_stretch; +mod gap_column_row_gap_wrapping; +mod gap_row_gap_align_items_end; +mod gap_row_gap_align_items_stretch; +mod gap_row_gap_column_child_margins; +mod gap_row_gap_determines_parent_height; +mod gap_row_gap_percentage_wrapping; +mod gap_row_gap_row_wrap_child_margins; +mod intrinsic_sizing_cross_size_column; +mod intrinsic_sizing_main_size_column; +mod intrinsic_sizing_main_size_column_nested; +mod intrinsic_sizing_main_size_column_wrap; +mod intrinsic_sizing_main_size_row; +mod intrinsic_sizing_main_size_row_nested; +mod intrinsic_sizing_main_size_row_wrap; +mod justify_content_column_center; +mod justify_content_column_flex_end; +mod justify_content_column_flex_start; +mod justify_content_column_max_height_and_margin; +mod justify_content_column_min_height_and_margin; +mod justify_content_column_min_height_and_margin_bottom; +mod justify_content_column_min_height_and_margin_top; +mod justify_content_column_space_around; +mod justify_content_column_space_between; +mod justify_content_column_space_evenly; +mod justify_content_min_max; +mod justify_content_min_width_with_padding_child_width_greater_than_parent; +mod justify_content_min_width_with_padding_child_width_lower_than_parent; +mod justify_content_overflow_min_max; +mod justify_content_row_center; +mod justify_content_row_flex_end; +mod justify_content_row_flex_start; +mod justify_content_row_max_width_and_margin; +mod justify_content_row_min_width_and_margin; +mod justify_content_row_space_around; +mod justify_content_row_space_between; +mod justify_content_row_space_evenly; +mod margin_and_flex_column; +mod margin_and_flex_row; +mod margin_and_stretch_column; +mod margin_and_stretch_row; +mod margin_auto_bottom; +mod margin_auto_bottom_and_top; +mod margin_auto_bottom_and_top_justify_center; +mod margin_auto_left; +mod margin_auto_left_and_right; +mod margin_auto_left_and_right_column; +mod margin_auto_left_and_right_column_and_center; +mod margin_auto_left_and_right_stretch; +mod margin_auto_left_child_bigger_than_parent; +mod margin_auto_left_fix_right_child_bigger_than_parent; +mod margin_auto_left_right_child_bigger_than_parent; +mod margin_auto_left_stretching_child; +mod margin_auto_mutiple_children_column; +mod margin_auto_mutiple_children_row; +mod margin_auto_right; +mod margin_auto_top; +mod margin_auto_top_and_bottom_stretch; +mod margin_auto_top_stretching_child; +mod margin_bottom; +mod margin_fix_left_auto_right_child_bigger_than_parent; +mod margin_left; +mod margin_right; +mod margin_should_not_be_part_of_max_height; +mod margin_should_not_be_part_of_max_width; +mod margin_top; +mod margin_with_sibling_column; +mod margin_with_sibling_row; +mod max_height; +mod max_height_overrides_height; +mod max_height_overrides_height_on_root; +mod max_width; +mod max_width_overrides_width; +mod max_width_overrides_width_on_root; +mod measure_child; +mod measure_child_absolute; +mod measure_child_constraint; +mod measure_child_constraint_padding_parent; +mod measure_child_with_flex_grow; +mod measure_child_with_flex_shrink; +mod measure_child_with_flex_shrink_hidden; +mod measure_child_with_min_size_greater_than_available_space; +mod measure_flex_basis_overrides_measure; +mod measure_height_overrides_measure; +mod measure_remeasure_child_after_growing; +mod measure_remeasure_child_after_shrinking; +mod measure_remeasure_child_after_stretching; +mod measure_root; +mod measure_stretch_overrides_measure; +mod measure_width_overrides_measure; +mod min_height; +mod min_height_larger_than_height; +mod min_height_overrides_height; +mod min_height_overrides_height_on_root; +mod min_height_overrides_max_height; +mod min_height_with_nested_fixed_height; +mod min_max_percent_different_width_height; +mod min_max_percent_no_width_height; +mod min_width; +mod min_width_larger_than_width; +mod min_width_overrides_max_width; +mod min_width_overrides_width; +mod min_width_overrides_width_on_root; +mod nested_overflowing_child; +mod nested_overflowing_child_in_constraint_parent; +mod only_shrinkable_item_with_flex_basis_zero; +mod overflow_cross_axis; +mod overflow_main_axis; +mod overflow_main_axis_shrink_hidden; +mod overflow_main_axis_shrink_scroll; +mod overflow_main_axis_shrink_visible; +mod overflow_scroll_main_axis_justify_content_end; +mod overflow_scrollbars_overriden_by_available_space; +mod overflow_scrollbars_overriden_by_max_size; +mod overflow_scrollbars_overriden_by_size; +mod overflow_scrollbars_take_up_space_both_axis; +mod overflow_scrollbars_take_up_space_cross_axis; +mod overflow_scrollbars_take_up_space_main_axis; +mod padding_align_end_child; +mod padding_border_overrides_max_size; +mod padding_border_overrides_min_size; +mod padding_border_overrides_size; +mod padding_border_overrides_size_flex_basis_0; +mod padding_border_overrides_size_flex_basis_0_growable; +mod padding_center_child; +mod padding_container_match_child; +mod padding_flex_child; +mod padding_no_child; +mod padding_no_size; +mod padding_stretch_child; +mod parent_wrap_child_size_overflowing_parent; +mod percent_absolute_position; +mod percent_within_flex_grow; +mod percentage_absolute_position; +mod percentage_container_in_wrapping_container; +mod percentage_different_width_height; +mod percentage_different_width_height_column; +mod percentage_flex_basis; +mod percentage_flex_basis_cross; +mod percentage_flex_basis_cross_max_height; +mod percentage_flex_basis_cross_max_width; +mod percentage_flex_basis_cross_min_height; +mod percentage_flex_basis_cross_min_width; +mod percentage_flex_basis_main_max_height; +mod percentage_flex_basis_main_max_width; +mod percentage_flex_basis_main_min_width; +mod percentage_main_max_height; +mod percentage_margin_should_calculate_based_only_on_width; +mod percentage_moderate_complexity; +mod percentage_moderate_complexity2; +mod percentage_multiple_nested_with_padding_margin_and_percentage_values; +mod percentage_padding_should_calculate_based_only_on_width; +mod percentage_position_bottom_right; +mod percentage_position_left_top; +mod percentage_size_based_on_parent_inner_size; +mod percentage_size_of_flex_basis; +mod percentage_sizes_should_not_prevent_flex_shrinking; +mod percentage_width_height; +mod percentage_width_height_undefined_parent_size; +mod position_root_with_rtl_should_position_withoutdirection; +mod relative_position_should_not_nudge_siblings; +mod rounding_flex_basis_flex_grow_row_prime_number_width; +mod rounding_flex_basis_flex_grow_row_width_of_100; +mod rounding_flex_basis_flex_shrink_row; +mod rounding_flex_basis_overrides_main_size; +mod rounding_fractial_input_1; +mod rounding_fractial_input_2; +mod rounding_fractial_input_3; +mod rounding_fractial_input_4; +mod rounding_fractial_input_5; +mod rounding_fractial_input_6; +mod rounding_fractial_input_7; +mod rounding_inner_node_controversy_combined; +mod rounding_inner_node_controversy_horizontal; +mod rounding_inner_node_controversy_vertical; +mod rounding_total_fractial; +mod rounding_total_fractial_nested; +mod simple_child; +mod single_flex_child_after_absolute_child; +mod size_defined_by_child; +mod size_defined_by_child_with_border; +mod size_defined_by_child_with_padding; +mod size_defined_by_grand_child; +mod undefined_height_with_min_max; +mod undefined_width_with_min_max; +mod undefined_width_with_min_max_row; +mod width_smaller_then_content_with_flex_grow_large_size; +mod width_smaller_then_content_with_flex_grow_small_size; +mod width_smaller_then_content_with_flex_grow_unconstraint_size; +mod width_smaller_then_content_with_flex_grow_very_large_size; +mod wrap_child; +mod wrap_column; +mod wrap_grandchild; +mod wrap_nodes_with_content_sizing_margin_cross; +mod wrap_nodes_with_content_sizing_overflowing_margin; +mod wrap_reverse_column; +mod wrap_reverse_column_fixed_size; +mod wrap_reverse_row; +mod wrap_reverse_row_align_content_center; +mod wrap_reverse_row_align_content_flex_start; +mod wrap_reverse_row_align_content_space_around; +mod wrap_reverse_row_align_content_stretch; +mod wrap_reverse_row_single_line_different_size; +mod wrap_row; +mod wrap_row_align_items_center; +mod wrap_row_align_items_flex_end; +mod wrapped_column_max_height; +mod wrapped_column_max_height_flex; +mod wrapped_row_within_align_items_center; +mod wrapped_row_within_align_items_flex_end; +mod wrapped_row_within_align_items_flex_start; diff --git a/tests/generated/nested_overflowing_child.rs b/tests/generated/flex/nested_overflowing_child.rs similarity index 100% rename from tests/generated/nested_overflowing_child.rs rename to tests/generated/flex/nested_overflowing_child.rs diff --git a/tests/generated/nested_overflowing_child_in_constraint_parent.rs b/tests/generated/flex/nested_overflowing_child_in_constraint_parent.rs similarity index 100% rename from tests/generated/nested_overflowing_child_in_constraint_parent.rs rename to tests/generated/flex/nested_overflowing_child_in_constraint_parent.rs diff --git a/tests/generated/only_shrinkable_item_with_flex_basis_zero.rs b/tests/generated/flex/only_shrinkable_item_with_flex_basis_zero.rs similarity index 100% rename from tests/generated/only_shrinkable_item_with_flex_basis_zero.rs rename to tests/generated/flex/only_shrinkable_item_with_flex_basis_zero.rs diff --git a/tests/generated/overflow_cross_axis.rs b/tests/generated/flex/overflow_cross_axis.rs similarity index 100% rename from tests/generated/overflow_cross_axis.rs rename to tests/generated/flex/overflow_cross_axis.rs diff --git a/tests/generated/overflow_main_axis.rs b/tests/generated/flex/overflow_main_axis.rs similarity index 100% rename from tests/generated/overflow_main_axis.rs rename to tests/generated/flex/overflow_main_axis.rs diff --git a/tests/generated/overflow_main_axis_shrink_hidden.rs b/tests/generated/flex/overflow_main_axis_shrink_hidden.rs similarity index 95% rename from tests/generated/overflow_main_axis_shrink_hidden.rs rename to tests/generated/flex/overflow_main_axis_shrink_hidden.rs index ba2ace05c..40c495cb8 100644 --- a/tests/generated/overflow_main_axis_shrink_hidden.rs +++ b/tests/generated/flex/overflow_main_axis_shrink_hidden.rs @@ -16,11 +16,11 @@ fn overflow_main_axis_shrink_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/overflow_main_axis_shrink_scroll.rs b/tests/generated/flex/overflow_main_axis_shrink_scroll.rs similarity index 95% rename from tests/generated/overflow_main_axis_shrink_scroll.rs rename to tests/generated/flex/overflow_main_axis_shrink_scroll.rs index 2a7bcf504..ffb41c428 100644 --- a/tests/generated/overflow_main_axis_shrink_scroll.rs +++ b/tests/generated/flex/overflow_main_axis_shrink_scroll.rs @@ -16,11 +16,11 @@ fn overflow_main_axis_shrink_scroll() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/overflow_main_axis_shrink_visible.rs b/tests/generated/flex/overflow_main_axis_shrink_visible.rs similarity index 94% rename from tests/generated/overflow_main_axis_shrink_visible.rs rename to tests/generated/flex/overflow_main_axis_shrink_visible.rs index 2fe4be6b1..bb7163c69 100644 --- a/tests/generated/overflow_main_axis_shrink_visible.rs +++ b/tests/generated/flex/overflow_main_axis_shrink_visible.rs @@ -8,11 +8,11 @@ fn overflow_main_axis_shrink_visible() { taffy::style::Style { flex_shrink: 1f32, ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/overflow_scroll_main_axis_justify_content_end.rs b/tests/generated/flex/overflow_scroll_main_axis_justify_content_end.rs similarity index 100% rename from tests/generated/overflow_scroll_main_axis_justify_content_end.rs rename to tests/generated/flex/overflow_scroll_main_axis_justify_content_end.rs diff --git a/tests/generated/overflow_scrollbars_overriden_by_available_space.rs b/tests/generated/flex/overflow_scrollbars_overriden_by_available_space.rs similarity index 100% rename from tests/generated/overflow_scrollbars_overriden_by_available_space.rs rename to tests/generated/flex/overflow_scrollbars_overriden_by_available_space.rs diff --git a/tests/generated/overflow_scrollbars_overriden_by_max_size.rs b/tests/generated/flex/overflow_scrollbars_overriden_by_max_size.rs similarity index 100% rename from tests/generated/overflow_scrollbars_overriden_by_max_size.rs rename to tests/generated/flex/overflow_scrollbars_overriden_by_max_size.rs diff --git a/tests/generated/overflow_scrollbars_overriden_by_size.rs b/tests/generated/flex/overflow_scrollbars_overriden_by_size.rs similarity index 100% rename from tests/generated/overflow_scrollbars_overriden_by_size.rs rename to tests/generated/flex/overflow_scrollbars_overriden_by_size.rs diff --git a/tests/generated/overflow_scrollbars_take_up_space_both_axis.rs b/tests/generated/flex/overflow_scrollbars_take_up_space_both_axis.rs similarity index 100% rename from tests/generated/overflow_scrollbars_take_up_space_both_axis.rs rename to tests/generated/flex/overflow_scrollbars_take_up_space_both_axis.rs diff --git a/tests/generated/overflow_scrollbars_take_up_space_cross_axis.rs b/tests/generated/flex/overflow_scrollbars_take_up_space_cross_axis.rs similarity index 100% rename from tests/generated/overflow_scrollbars_take_up_space_cross_axis.rs rename to tests/generated/flex/overflow_scrollbars_take_up_space_cross_axis.rs diff --git a/tests/generated/overflow_scrollbars_take_up_space_main_axis.rs b/tests/generated/flex/overflow_scrollbars_take_up_space_main_axis.rs similarity index 100% rename from tests/generated/overflow_scrollbars_take_up_space_main_axis.rs rename to tests/generated/flex/overflow_scrollbars_take_up_space_main_axis.rs diff --git a/tests/generated/padding_align_end_child.rs b/tests/generated/flex/padding_align_end_child.rs similarity index 100% rename from tests/generated/padding_align_end_child.rs rename to tests/generated/flex/padding_align_end_child.rs diff --git a/tests/generated/padding_border_overrides_max_size.rs b/tests/generated/flex/padding_border_overrides_max_size.rs similarity index 100% rename from tests/generated/padding_border_overrides_max_size.rs rename to tests/generated/flex/padding_border_overrides_max_size.rs diff --git a/tests/generated/padding_border_overrides_min_size.rs b/tests/generated/flex/padding_border_overrides_min_size.rs similarity index 100% rename from tests/generated/padding_border_overrides_min_size.rs rename to tests/generated/flex/padding_border_overrides_min_size.rs diff --git a/tests/generated/padding_border_overrides_size.rs b/tests/generated/flex/padding_border_overrides_size.rs similarity index 100% rename from tests/generated/padding_border_overrides_size.rs rename to tests/generated/flex/padding_border_overrides_size.rs diff --git a/tests/generated/padding_border_overrides_size_flex_basis_0.rs b/tests/generated/flex/padding_border_overrides_size_flex_basis_0.rs similarity index 100% rename from tests/generated/padding_border_overrides_size_flex_basis_0.rs rename to tests/generated/flex/padding_border_overrides_size_flex_basis_0.rs diff --git a/tests/generated/padding_border_overrides_size_flex_basis_0_growable.rs b/tests/generated/flex/padding_border_overrides_size_flex_basis_0_growable.rs similarity index 100% rename from tests/generated/padding_border_overrides_size_flex_basis_0_growable.rs rename to tests/generated/flex/padding_border_overrides_size_flex_basis_0_growable.rs diff --git a/tests/generated/padding_center_child.rs b/tests/generated/flex/padding_center_child.rs similarity index 100% rename from tests/generated/padding_center_child.rs rename to tests/generated/flex/padding_center_child.rs diff --git a/tests/generated/padding_container_match_child.rs b/tests/generated/flex/padding_container_match_child.rs similarity index 100% rename from tests/generated/padding_container_match_child.rs rename to tests/generated/flex/padding_container_match_child.rs diff --git a/tests/generated/padding_flex_child.rs b/tests/generated/flex/padding_flex_child.rs similarity index 100% rename from tests/generated/padding_flex_child.rs rename to tests/generated/flex/padding_flex_child.rs diff --git a/tests/generated/padding_no_child.rs b/tests/generated/flex/padding_no_child.rs similarity index 100% rename from tests/generated/padding_no_child.rs rename to tests/generated/flex/padding_no_child.rs diff --git a/tests/generated/padding_no_size.rs b/tests/generated/flex/padding_no_size.rs similarity index 100% rename from tests/generated/padding_no_size.rs rename to tests/generated/flex/padding_no_size.rs diff --git a/tests/generated/padding_stretch_child.rs b/tests/generated/flex/padding_stretch_child.rs similarity index 100% rename from tests/generated/padding_stretch_child.rs rename to tests/generated/flex/padding_stretch_child.rs diff --git a/tests/generated/parent_wrap_child_size_overflowing_parent.rs b/tests/generated/flex/parent_wrap_child_size_overflowing_parent.rs similarity index 100% rename from tests/generated/parent_wrap_child_size_overflowing_parent.rs rename to tests/generated/flex/parent_wrap_child_size_overflowing_parent.rs diff --git a/tests/generated/percent_absolute_position.rs b/tests/generated/flex/percent_absolute_position.rs similarity index 100% rename from tests/generated/percent_absolute_position.rs rename to tests/generated/flex/percent_absolute_position.rs diff --git a/tests/generated/percent_within_flex_grow.rs b/tests/generated/flex/percent_within_flex_grow.rs similarity index 100% rename from tests/generated/percent_within_flex_grow.rs rename to tests/generated/flex/percent_within_flex_grow.rs diff --git a/tests/generated/percentage_absolute_position.rs b/tests/generated/flex/percentage_absolute_position.rs similarity index 100% rename from tests/generated/percentage_absolute_position.rs rename to tests/generated/flex/percentage_absolute_position.rs diff --git a/tests/generated/percentage_container_in_wrapping_container.rs b/tests/generated/flex/percentage_container_in_wrapping_container.rs similarity index 100% rename from tests/generated/percentage_container_in_wrapping_container.rs rename to tests/generated/flex/percentage_container_in_wrapping_container.rs diff --git a/tests/generated/percentage_different_width_height.rs b/tests/generated/flex/percentage_different_width_height.rs similarity index 100% rename from tests/generated/percentage_different_width_height.rs rename to tests/generated/flex/percentage_different_width_height.rs diff --git a/tests/generated/percentage_different_width_height_column.rs b/tests/generated/flex/percentage_different_width_height_column.rs similarity index 100% rename from tests/generated/percentage_different_width_height_column.rs rename to tests/generated/flex/percentage_different_width_height_column.rs diff --git a/tests/generated/percentage_flex_basis.rs b/tests/generated/flex/percentage_flex_basis.rs similarity index 100% rename from tests/generated/percentage_flex_basis.rs rename to tests/generated/flex/percentage_flex_basis.rs diff --git a/tests/generated/percentage_flex_basis_cross.rs b/tests/generated/flex/percentage_flex_basis_cross.rs similarity index 100% rename from tests/generated/percentage_flex_basis_cross.rs rename to tests/generated/flex/percentage_flex_basis_cross.rs diff --git a/tests/generated/percentage_flex_basis_cross_max_height.rs b/tests/generated/flex/percentage_flex_basis_cross_max_height.rs similarity index 100% rename from tests/generated/percentage_flex_basis_cross_max_height.rs rename to tests/generated/flex/percentage_flex_basis_cross_max_height.rs diff --git a/tests/generated/percentage_flex_basis_cross_max_width.rs b/tests/generated/flex/percentage_flex_basis_cross_max_width.rs similarity index 100% rename from tests/generated/percentage_flex_basis_cross_max_width.rs rename to tests/generated/flex/percentage_flex_basis_cross_max_width.rs diff --git a/tests/generated/percentage_flex_basis_cross_min_height.rs b/tests/generated/flex/percentage_flex_basis_cross_min_height.rs similarity index 100% rename from tests/generated/percentage_flex_basis_cross_min_height.rs rename to tests/generated/flex/percentage_flex_basis_cross_min_height.rs diff --git a/tests/generated/percentage_flex_basis_cross_min_width.rs b/tests/generated/flex/percentage_flex_basis_cross_min_width.rs similarity index 100% rename from tests/generated/percentage_flex_basis_cross_min_width.rs rename to tests/generated/flex/percentage_flex_basis_cross_min_width.rs diff --git a/tests/generated/percentage_flex_basis_main_max_height.rs b/tests/generated/flex/percentage_flex_basis_main_max_height.rs similarity index 100% rename from tests/generated/percentage_flex_basis_main_max_height.rs rename to tests/generated/flex/percentage_flex_basis_main_max_height.rs diff --git a/tests/generated/percentage_flex_basis_main_max_width.rs b/tests/generated/flex/percentage_flex_basis_main_max_width.rs similarity index 100% rename from tests/generated/percentage_flex_basis_main_max_width.rs rename to tests/generated/flex/percentage_flex_basis_main_max_width.rs diff --git a/tests/generated/percentage_flex_basis_main_min_width.rs b/tests/generated/flex/percentage_flex_basis_main_min_width.rs similarity index 100% rename from tests/generated/percentage_flex_basis_main_min_width.rs rename to tests/generated/flex/percentage_flex_basis_main_min_width.rs diff --git a/tests/generated/percentage_main_max_height.rs b/tests/generated/flex/percentage_main_max_height.rs similarity index 100% rename from tests/generated/percentage_main_max_height.rs rename to tests/generated/flex/percentage_main_max_height.rs diff --git a/tests/generated/percentage_margin_should_calculate_based_only_on_width.rs b/tests/generated/flex/percentage_margin_should_calculate_based_only_on_width.rs similarity index 100% rename from tests/generated/percentage_margin_should_calculate_based_only_on_width.rs rename to tests/generated/flex/percentage_margin_should_calculate_based_only_on_width.rs diff --git a/tests/generated/percentage_moderate_complexity.rs b/tests/generated/flex/percentage_moderate_complexity.rs similarity index 100% rename from tests/generated/percentage_moderate_complexity.rs rename to tests/generated/flex/percentage_moderate_complexity.rs diff --git a/tests/generated/percentage_moderate_complexity2.rs b/tests/generated/flex/percentage_moderate_complexity2.rs similarity index 100% rename from tests/generated/percentage_moderate_complexity2.rs rename to tests/generated/flex/percentage_moderate_complexity2.rs diff --git a/tests/generated/percentage_multiple_nested_with_padding_margin_and_percentage_values.rs b/tests/generated/flex/percentage_multiple_nested_with_padding_margin_and_percentage_values.rs similarity index 100% rename from tests/generated/percentage_multiple_nested_with_padding_margin_and_percentage_values.rs rename to tests/generated/flex/percentage_multiple_nested_with_padding_margin_and_percentage_values.rs diff --git a/tests/generated/percentage_padding_should_calculate_based_only_on_width.rs b/tests/generated/flex/percentage_padding_should_calculate_based_only_on_width.rs similarity index 100% rename from tests/generated/percentage_padding_should_calculate_based_only_on_width.rs rename to tests/generated/flex/percentage_padding_should_calculate_based_only_on_width.rs diff --git a/tests/generated/percentage_position_bottom_right.rs b/tests/generated/flex/percentage_position_bottom_right.rs similarity index 100% rename from tests/generated/percentage_position_bottom_right.rs rename to tests/generated/flex/percentage_position_bottom_right.rs diff --git a/tests/generated/percentage_position_left_top.rs b/tests/generated/flex/percentage_position_left_top.rs similarity index 100% rename from tests/generated/percentage_position_left_top.rs rename to tests/generated/flex/percentage_position_left_top.rs diff --git a/tests/generated/percentage_size_based_on_parent_inner_size.rs b/tests/generated/flex/percentage_size_based_on_parent_inner_size.rs similarity index 100% rename from tests/generated/percentage_size_based_on_parent_inner_size.rs rename to tests/generated/flex/percentage_size_based_on_parent_inner_size.rs diff --git a/tests/generated/percentage_size_of_flex_basis.rs b/tests/generated/flex/percentage_size_of_flex_basis.rs similarity index 100% rename from tests/generated/percentage_size_of_flex_basis.rs rename to tests/generated/flex/percentage_size_of_flex_basis.rs diff --git a/tests/generated/percentage_sizes_should_not_prevent_flex_shrinking.rs b/tests/generated/flex/percentage_sizes_should_not_prevent_flex_shrinking.rs similarity index 100% rename from tests/generated/percentage_sizes_should_not_prevent_flex_shrinking.rs rename to tests/generated/flex/percentage_sizes_should_not_prevent_flex_shrinking.rs diff --git a/tests/generated/percentage_width_height.rs b/tests/generated/flex/percentage_width_height.rs similarity index 100% rename from tests/generated/percentage_width_height.rs rename to tests/generated/flex/percentage_width_height.rs diff --git a/tests/generated/percentage_width_height_undefined_parent_size.rs b/tests/generated/flex/percentage_width_height_undefined_parent_size.rs similarity index 100% rename from tests/generated/percentage_width_height_undefined_parent_size.rs rename to tests/generated/flex/percentage_width_height_undefined_parent_size.rs diff --git a/tests/generated/position_root_with_rtl_should_position_withoutdirection.rs b/tests/generated/flex/position_root_with_rtl_should_position_withoutdirection.rs similarity index 100% rename from tests/generated/position_root_with_rtl_should_position_withoutdirection.rs rename to tests/generated/flex/position_root_with_rtl_should_position_withoutdirection.rs diff --git a/tests/generated/relative_position_should_not_nudge_siblings.rs b/tests/generated/flex/relative_position_should_not_nudge_siblings.rs similarity index 100% rename from tests/generated/relative_position_should_not_nudge_siblings.rs rename to tests/generated/flex/relative_position_should_not_nudge_siblings.rs diff --git a/tests/generated/rounding_flex_basis_flex_grow_row_prime_number_width.rs b/tests/generated/flex/rounding_flex_basis_flex_grow_row_prime_number_width.rs similarity index 100% rename from tests/generated/rounding_flex_basis_flex_grow_row_prime_number_width.rs rename to tests/generated/flex/rounding_flex_basis_flex_grow_row_prime_number_width.rs diff --git a/tests/generated/rounding_flex_basis_flex_grow_row_width_of_100.rs b/tests/generated/flex/rounding_flex_basis_flex_grow_row_width_of_100.rs similarity index 100% rename from tests/generated/rounding_flex_basis_flex_grow_row_width_of_100.rs rename to tests/generated/flex/rounding_flex_basis_flex_grow_row_width_of_100.rs diff --git a/tests/generated/rounding_flex_basis_flex_shrink_row.rs b/tests/generated/flex/rounding_flex_basis_flex_shrink_row.rs similarity index 100% rename from tests/generated/rounding_flex_basis_flex_shrink_row.rs rename to tests/generated/flex/rounding_flex_basis_flex_shrink_row.rs diff --git a/tests/generated/rounding_flex_basis_overrides_main_size.rs b/tests/generated/flex/rounding_flex_basis_overrides_main_size.rs similarity index 100% rename from tests/generated/rounding_flex_basis_overrides_main_size.rs rename to tests/generated/flex/rounding_flex_basis_overrides_main_size.rs diff --git a/tests/generated/rounding_fractial_input_1.rs b/tests/generated/flex/rounding_fractial_input_1.rs similarity index 100% rename from tests/generated/rounding_fractial_input_1.rs rename to tests/generated/flex/rounding_fractial_input_1.rs diff --git a/tests/generated/rounding_fractial_input_2.rs b/tests/generated/flex/rounding_fractial_input_2.rs similarity index 100% rename from tests/generated/rounding_fractial_input_2.rs rename to tests/generated/flex/rounding_fractial_input_2.rs diff --git a/tests/generated/rounding_fractial_input_3.rs b/tests/generated/flex/rounding_fractial_input_3.rs similarity index 100% rename from tests/generated/rounding_fractial_input_3.rs rename to tests/generated/flex/rounding_fractial_input_3.rs diff --git a/tests/generated/rounding_fractial_input_4.rs b/tests/generated/flex/rounding_fractial_input_4.rs similarity index 100% rename from tests/generated/rounding_fractial_input_4.rs rename to tests/generated/flex/rounding_fractial_input_4.rs diff --git a/tests/generated/rounding_fractial_input_5.rs b/tests/generated/flex/rounding_fractial_input_5.rs similarity index 100% rename from tests/generated/rounding_fractial_input_5.rs rename to tests/generated/flex/rounding_fractial_input_5.rs diff --git a/tests/generated/rounding_fractial_input_6.rs b/tests/generated/flex/rounding_fractial_input_6.rs similarity index 100% rename from tests/generated/rounding_fractial_input_6.rs rename to tests/generated/flex/rounding_fractial_input_6.rs diff --git a/tests/generated/rounding_fractial_input_7.rs b/tests/generated/flex/rounding_fractial_input_7.rs similarity index 100% rename from tests/generated/rounding_fractial_input_7.rs rename to tests/generated/flex/rounding_fractial_input_7.rs diff --git a/tests/generated/rounding_inner_node_controversy_combined.rs b/tests/generated/flex/rounding_inner_node_controversy_combined.rs similarity index 100% rename from tests/generated/rounding_inner_node_controversy_combined.rs rename to tests/generated/flex/rounding_inner_node_controversy_combined.rs diff --git a/tests/generated/rounding_inner_node_controversy_horizontal.rs b/tests/generated/flex/rounding_inner_node_controversy_horizontal.rs similarity index 100% rename from tests/generated/rounding_inner_node_controversy_horizontal.rs rename to tests/generated/flex/rounding_inner_node_controversy_horizontal.rs diff --git a/tests/generated/rounding_inner_node_controversy_vertical.rs b/tests/generated/flex/rounding_inner_node_controversy_vertical.rs similarity index 100% rename from tests/generated/rounding_inner_node_controversy_vertical.rs rename to tests/generated/flex/rounding_inner_node_controversy_vertical.rs diff --git a/tests/generated/rounding_total_fractial.rs b/tests/generated/flex/rounding_total_fractial.rs similarity index 100% rename from tests/generated/rounding_total_fractial.rs rename to tests/generated/flex/rounding_total_fractial.rs diff --git a/tests/generated/rounding_total_fractial_nested.rs b/tests/generated/flex/rounding_total_fractial_nested.rs similarity index 100% rename from tests/generated/rounding_total_fractial_nested.rs rename to tests/generated/flex/rounding_total_fractial_nested.rs diff --git a/tests/generated/simple_child.rs b/tests/generated/flex/simple_child.rs similarity index 100% rename from tests/generated/simple_child.rs rename to tests/generated/flex/simple_child.rs diff --git a/tests/generated/single_flex_child_after_absolute_child.rs b/tests/generated/flex/single_flex_child_after_absolute_child.rs similarity index 100% rename from tests/generated/single_flex_child_after_absolute_child.rs rename to tests/generated/flex/single_flex_child_after_absolute_child.rs diff --git a/tests/generated/size_defined_by_child.rs b/tests/generated/flex/size_defined_by_child.rs similarity index 100% rename from tests/generated/size_defined_by_child.rs rename to tests/generated/flex/size_defined_by_child.rs diff --git a/tests/generated/size_defined_by_child_with_border.rs b/tests/generated/flex/size_defined_by_child_with_border.rs similarity index 100% rename from tests/generated/size_defined_by_child_with_border.rs rename to tests/generated/flex/size_defined_by_child_with_border.rs diff --git a/tests/generated/size_defined_by_child_with_padding.rs b/tests/generated/flex/size_defined_by_child_with_padding.rs similarity index 100% rename from tests/generated/size_defined_by_child_with_padding.rs rename to tests/generated/flex/size_defined_by_child_with_padding.rs diff --git a/tests/generated/size_defined_by_grand_child.rs b/tests/generated/flex/size_defined_by_grand_child.rs similarity index 100% rename from tests/generated/size_defined_by_grand_child.rs rename to tests/generated/flex/size_defined_by_grand_child.rs diff --git a/tests/generated/undefined_height_with_min_max.rs b/tests/generated/flex/undefined_height_with_min_max.rs similarity index 100% rename from tests/generated/undefined_height_with_min_max.rs rename to tests/generated/flex/undefined_height_with_min_max.rs diff --git a/tests/generated/undefined_width_with_min_max.rs b/tests/generated/flex/undefined_width_with_min_max.rs similarity index 100% rename from tests/generated/undefined_width_with_min_max.rs rename to tests/generated/flex/undefined_width_with_min_max.rs diff --git a/tests/generated/undefined_width_with_min_max_row.rs b/tests/generated/flex/undefined_width_with_min_max_row.rs similarity index 100% rename from tests/generated/undefined_width_with_min_max_row.rs rename to tests/generated/flex/undefined_width_with_min_max_row.rs diff --git a/tests/generated/width_smaller_then_content_with_flex_grow_large_size.rs b/tests/generated/flex/width_smaller_then_content_with_flex_grow_large_size.rs similarity index 100% rename from tests/generated/width_smaller_then_content_with_flex_grow_large_size.rs rename to tests/generated/flex/width_smaller_then_content_with_flex_grow_large_size.rs diff --git a/tests/generated/width_smaller_then_content_with_flex_grow_small_size.rs b/tests/generated/flex/width_smaller_then_content_with_flex_grow_small_size.rs similarity index 100% rename from tests/generated/width_smaller_then_content_with_flex_grow_small_size.rs rename to tests/generated/flex/width_smaller_then_content_with_flex_grow_small_size.rs diff --git a/tests/generated/width_smaller_then_content_with_flex_grow_unconstraint_size.rs b/tests/generated/flex/width_smaller_then_content_with_flex_grow_unconstraint_size.rs similarity index 100% rename from tests/generated/width_smaller_then_content_with_flex_grow_unconstraint_size.rs rename to tests/generated/flex/width_smaller_then_content_with_flex_grow_unconstraint_size.rs diff --git a/tests/generated/width_smaller_then_content_with_flex_grow_very_large_size.rs b/tests/generated/flex/width_smaller_then_content_with_flex_grow_very_large_size.rs similarity index 100% rename from tests/generated/width_smaller_then_content_with_flex_grow_very_large_size.rs rename to tests/generated/flex/width_smaller_then_content_with_flex_grow_very_large_size.rs diff --git a/tests/generated/wrap_child.rs b/tests/generated/flex/wrap_child.rs similarity index 100% rename from tests/generated/wrap_child.rs rename to tests/generated/flex/wrap_child.rs diff --git a/tests/generated/wrap_column.rs b/tests/generated/flex/wrap_column.rs similarity index 100% rename from tests/generated/wrap_column.rs rename to tests/generated/flex/wrap_column.rs diff --git a/tests/generated/wrap_grandchild.rs b/tests/generated/flex/wrap_grandchild.rs similarity index 100% rename from tests/generated/wrap_grandchild.rs rename to tests/generated/flex/wrap_grandchild.rs diff --git a/tests/generated/wrap_nodes_with_content_sizing_margin_cross.rs b/tests/generated/flex/wrap_nodes_with_content_sizing_margin_cross.rs similarity index 100% rename from tests/generated/wrap_nodes_with_content_sizing_margin_cross.rs rename to tests/generated/flex/wrap_nodes_with_content_sizing_margin_cross.rs diff --git a/tests/generated/wrap_nodes_with_content_sizing_overflowing_margin.rs b/tests/generated/flex/wrap_nodes_with_content_sizing_overflowing_margin.rs similarity index 100% rename from tests/generated/wrap_nodes_with_content_sizing_overflowing_margin.rs rename to tests/generated/flex/wrap_nodes_with_content_sizing_overflowing_margin.rs diff --git a/tests/generated/wrap_reverse_column.rs b/tests/generated/flex/wrap_reverse_column.rs similarity index 100% rename from tests/generated/wrap_reverse_column.rs rename to tests/generated/flex/wrap_reverse_column.rs diff --git a/tests/generated/wrap_reverse_column_fixed_size.rs b/tests/generated/flex/wrap_reverse_column_fixed_size.rs similarity index 100% rename from tests/generated/wrap_reverse_column_fixed_size.rs rename to tests/generated/flex/wrap_reverse_column_fixed_size.rs diff --git a/tests/generated/wrap_reverse_row.rs b/tests/generated/flex/wrap_reverse_row.rs similarity index 100% rename from tests/generated/wrap_reverse_row.rs rename to tests/generated/flex/wrap_reverse_row.rs diff --git a/tests/generated/wrap_reverse_row_align_content_center.rs b/tests/generated/flex/wrap_reverse_row_align_content_center.rs similarity index 100% rename from tests/generated/wrap_reverse_row_align_content_center.rs rename to tests/generated/flex/wrap_reverse_row_align_content_center.rs diff --git a/tests/generated/wrap_reverse_row_align_content_flex_start.rs b/tests/generated/flex/wrap_reverse_row_align_content_flex_start.rs similarity index 100% rename from tests/generated/wrap_reverse_row_align_content_flex_start.rs rename to tests/generated/flex/wrap_reverse_row_align_content_flex_start.rs diff --git a/tests/generated/wrap_reverse_row_align_content_space_around.rs b/tests/generated/flex/wrap_reverse_row_align_content_space_around.rs similarity index 100% rename from tests/generated/wrap_reverse_row_align_content_space_around.rs rename to tests/generated/flex/wrap_reverse_row_align_content_space_around.rs diff --git a/tests/generated/wrap_reverse_row_align_content_stretch.rs b/tests/generated/flex/wrap_reverse_row_align_content_stretch.rs similarity index 100% rename from tests/generated/wrap_reverse_row_align_content_stretch.rs rename to tests/generated/flex/wrap_reverse_row_align_content_stretch.rs diff --git a/tests/generated/wrap_reverse_row_single_line_different_size.rs b/tests/generated/flex/wrap_reverse_row_single_line_different_size.rs similarity index 100% rename from tests/generated/wrap_reverse_row_single_line_different_size.rs rename to tests/generated/flex/wrap_reverse_row_single_line_different_size.rs diff --git a/tests/generated/wrap_row.rs b/tests/generated/flex/wrap_row.rs similarity index 100% rename from tests/generated/wrap_row.rs rename to tests/generated/flex/wrap_row.rs diff --git a/tests/generated/wrap_row_align_items_center.rs b/tests/generated/flex/wrap_row_align_items_center.rs similarity index 100% rename from tests/generated/wrap_row_align_items_center.rs rename to tests/generated/flex/wrap_row_align_items_center.rs diff --git a/tests/generated/wrap_row_align_items_flex_end.rs b/tests/generated/flex/wrap_row_align_items_flex_end.rs similarity index 100% rename from tests/generated/wrap_row_align_items_flex_end.rs rename to tests/generated/flex/wrap_row_align_items_flex_end.rs diff --git a/tests/generated/wrapped_column_max_height.rs b/tests/generated/flex/wrapped_column_max_height.rs similarity index 100% rename from tests/generated/wrapped_column_max_height.rs rename to tests/generated/flex/wrapped_column_max_height.rs diff --git a/tests/generated/wrapped_column_max_height_flex.rs b/tests/generated/flex/wrapped_column_max_height_flex.rs similarity index 100% rename from tests/generated/wrapped_column_max_height_flex.rs rename to tests/generated/flex/wrapped_column_max_height_flex.rs diff --git a/tests/generated/wrapped_row_within_align_items_center.rs b/tests/generated/flex/wrapped_row_within_align_items_center.rs similarity index 100% rename from tests/generated/wrapped_row_within_align_items_center.rs rename to tests/generated/flex/wrapped_row_within_align_items_center.rs diff --git a/tests/generated/wrapped_row_within_align_items_flex_end.rs b/tests/generated/flex/wrapped_row_within_align_items_flex_end.rs similarity index 100% rename from tests/generated/wrapped_row_within_align_items_flex_end.rs rename to tests/generated/flex/wrapped_row_within_align_items_flex_end.rs diff --git a/tests/generated/wrapped_row_within_align_items_flex_start.rs b/tests/generated/flex/wrapped_row_within_align_items_flex_start.rs similarity index 100% rename from tests/generated/wrapped_row_within_align_items_flex_start.rs rename to tests/generated/flex/wrapped_row_within_align_items_flex_start.rs diff --git a/tests/generated/grid_absolute_align_self_sized_all.rs b/tests/generated/grid/grid_absolute_align_self_sized_all.rs similarity index 100% rename from tests/generated/grid_absolute_align_self_sized_all.rs rename to tests/generated/grid/grid_absolute_align_self_sized_all.rs diff --git a/tests/generated/grid_absolute_column_end.rs b/tests/generated/grid/grid_absolute_column_end.rs similarity index 100% rename from tests/generated/grid_absolute_column_end.rs rename to tests/generated/grid/grid_absolute_column_end.rs diff --git a/tests/generated/grid_absolute_column_start.rs b/tests/generated/grid/grid_absolute_column_start.rs similarity index 100% rename from tests/generated/grid_absolute_column_start.rs rename to tests/generated/grid/grid_absolute_column_start.rs diff --git a/tests/generated/grid_absolute_container_bottom_left.rs b/tests/generated/grid/grid_absolute_container_bottom_left.rs similarity index 100% rename from tests/generated/grid_absolute_container_bottom_left.rs rename to tests/generated/grid/grid_absolute_container_bottom_left.rs diff --git a/tests/generated/grid_absolute_container_bottom_left_margin.rs b/tests/generated/grid/grid_absolute_container_bottom_left_margin.rs similarity index 100% rename from tests/generated/grid_absolute_container_bottom_left_margin.rs rename to tests/generated/grid/grid_absolute_container_bottom_left_margin.rs diff --git a/tests/generated/grid_absolute_container_left_overrides_right.rs b/tests/generated/grid/grid_absolute_container_left_overrides_right.rs similarity index 100% rename from tests/generated/grid_absolute_container_left_overrides_right.rs rename to tests/generated/grid/grid_absolute_container_left_overrides_right.rs diff --git a/tests/generated/grid_absolute_container_left_right.rs b/tests/generated/grid/grid_absolute_container_left_right.rs similarity index 100% rename from tests/generated/grid_absolute_container_left_right.rs rename to tests/generated/grid/grid_absolute_container_left_right.rs diff --git a/tests/generated/grid_absolute_container_left_right_margin.rs b/tests/generated/grid/grid_absolute_container_left_right_margin.rs similarity index 100% rename from tests/generated/grid_absolute_container_left_right_margin.rs rename to tests/generated/grid/grid_absolute_container_left_right_margin.rs diff --git a/tests/generated/grid_absolute_container_negative_position.rs b/tests/generated/grid/grid_absolute_container_negative_position.rs similarity index 100% rename from tests/generated/grid_absolute_container_negative_position.rs rename to tests/generated/grid/grid_absolute_container_negative_position.rs diff --git a/tests/generated/grid_absolute_container_negative_position_margin.rs b/tests/generated/grid/grid_absolute_container_negative_position_margin.rs similarity index 100% rename from tests/generated/grid_absolute_container_negative_position_margin.rs rename to tests/generated/grid/grid_absolute_container_negative_position_margin.rs diff --git a/tests/generated/grid_absolute_container_top_bottom.rs b/tests/generated/grid/grid_absolute_container_top_bottom.rs similarity index 100% rename from tests/generated/grid_absolute_container_top_bottom.rs rename to tests/generated/grid/grid_absolute_container_top_bottom.rs diff --git a/tests/generated/grid_absolute_container_top_bottom_margin.rs b/tests/generated/grid/grid_absolute_container_top_bottom_margin.rs similarity index 100% rename from tests/generated/grid_absolute_container_top_bottom_margin.rs rename to tests/generated/grid/grid_absolute_container_top_bottom_margin.rs diff --git a/tests/generated/grid_absolute_container_top_right.rs b/tests/generated/grid/grid_absolute_container_top_right.rs similarity index 100% rename from tests/generated/grid_absolute_container_top_right.rs rename to tests/generated/grid/grid_absolute_container_top_right.rs diff --git a/tests/generated/grid_absolute_container_top_right_margin.rs b/tests/generated/grid/grid_absolute_container_top_right_margin.rs similarity index 100% rename from tests/generated/grid_absolute_container_top_right_margin.rs rename to tests/generated/grid/grid_absolute_container_top_right_margin.rs diff --git a/tests/generated/grid_absolute_justify_self_sized_all.rs b/tests/generated/grid/grid_absolute_justify_self_sized_all.rs similarity index 100% rename from tests/generated/grid_absolute_justify_self_sized_all.rs rename to tests/generated/grid/grid_absolute_justify_self_sized_all.rs diff --git a/tests/generated/grid_absolute_layout_within_border.rs b/tests/generated/grid/grid_absolute_layout_within_border.rs similarity index 100% rename from tests/generated/grid_absolute_layout_within_border.rs rename to tests/generated/grid/grid_absolute_layout_within_border.rs diff --git a/tests/generated/grid_absolute_layout_within_border_static.rs b/tests/generated/grid/grid_absolute_layout_within_border_static.rs similarity index 100% rename from tests/generated/grid_absolute_layout_within_border_static.rs rename to tests/generated/grid/grid_absolute_layout_within_border_static.rs diff --git a/tests/generated/grid_absolute_row_end.rs b/tests/generated/grid/grid_absolute_row_end.rs similarity index 100% rename from tests/generated/grid_absolute_row_end.rs rename to tests/generated/grid/grid_absolute_row_end.rs diff --git a/tests/generated/grid_absolute_row_start.rs b/tests/generated/grid/grid_absolute_row_start.rs similarity index 100% rename from tests/generated/grid_absolute_row_start.rs rename to tests/generated/grid/grid_absolute_row_start.rs diff --git a/tests/generated/grid_absolute_top_overrides_bottom.rs b/tests/generated/grid/grid_absolute_top_overrides_bottom.rs similarity index 100% rename from tests/generated/grid_absolute_top_overrides_bottom.rs rename to tests/generated/grid/grid_absolute_top_overrides_bottom.rs diff --git a/tests/generated/grid_absolute_with_padding.rs b/tests/generated/grid/grid_absolute_with_padding.rs similarity index 100% rename from tests/generated/grid_absolute_with_padding.rs rename to tests/generated/grid/grid_absolute_with_padding.rs diff --git a/tests/generated/grid_absolute_with_padding_and_margin.rs b/tests/generated/grid/grid_absolute_with_padding_and_margin.rs similarity index 100% rename from tests/generated/grid_absolute_with_padding_and_margin.rs rename to tests/generated/grid/grid_absolute_with_padding_and_margin.rs diff --git a/tests/generated/grid_align_content_center.rs b/tests/generated/grid/grid_align_content_center.rs similarity index 100% rename from tests/generated/grid_align_content_center.rs rename to tests/generated/grid/grid_align_content_center.rs diff --git a/tests/generated/grid_align_content_end.rs b/tests/generated/grid/grid_align_content_end.rs similarity index 100% rename from tests/generated/grid_align_content_end.rs rename to tests/generated/grid/grid_align_content_end.rs diff --git a/tests/generated/grid_align_content_end_with_padding_border.rs b/tests/generated/grid/grid_align_content_end_with_padding_border.rs similarity index 100% rename from tests/generated/grid_align_content_end_with_padding_border.rs rename to tests/generated/grid/grid_align_content_end_with_padding_border.rs diff --git a/tests/generated/grid_align_content_space_around.rs b/tests/generated/grid/grid_align_content_space_around.rs similarity index 100% rename from tests/generated/grid_align_content_space_around.rs rename to tests/generated/grid/grid_align_content_space_around.rs diff --git a/tests/generated/grid_align_content_space_around_with_padding_border.rs b/tests/generated/grid/grid_align_content_space_around_with_padding_border.rs similarity index 100% rename from tests/generated/grid_align_content_space_around_with_padding_border.rs rename to tests/generated/grid/grid_align_content_space_around_with_padding_border.rs diff --git a/tests/generated/grid_align_content_space_between.rs b/tests/generated/grid/grid_align_content_space_between.rs similarity index 100% rename from tests/generated/grid_align_content_space_between.rs rename to tests/generated/grid/grid_align_content_space_between.rs diff --git a/tests/generated/grid_align_content_space_between_with_padding_border.rs b/tests/generated/grid/grid_align_content_space_between_with_padding_border.rs similarity index 100% rename from tests/generated/grid_align_content_space_between_with_padding_border.rs rename to tests/generated/grid/grid_align_content_space_between_with_padding_border.rs diff --git a/tests/generated/grid_align_content_space_evenly.rs b/tests/generated/grid/grid_align_content_space_evenly.rs similarity index 100% rename from tests/generated/grid_align_content_space_evenly.rs rename to tests/generated/grid/grid_align_content_space_evenly.rs diff --git a/tests/generated/grid_align_content_space_evenly_with_padding_border.rs b/tests/generated/grid/grid_align_content_space_evenly_with_padding_border.rs similarity index 100% rename from tests/generated/grid_align_content_space_evenly_with_padding_border.rs rename to tests/generated/grid/grid_align_content_space_evenly_with_padding_border.rs diff --git a/tests/generated/grid_align_content_start.rs b/tests/generated/grid/grid_align_content_start.rs similarity index 100% rename from tests/generated/grid_align_content_start.rs rename to tests/generated/grid/grid_align_content_start.rs diff --git a/tests/generated/grid_align_content_start_with_padding_border.rs b/tests/generated/grid/grid_align_content_start_with_padding_border.rs similarity index 100% rename from tests/generated/grid_align_content_start_with_padding_border.rs rename to tests/generated/grid/grid_align_content_start_with_padding_border.rs diff --git a/tests/generated/grid_align_items_baseline.rs b/tests/generated/grid/grid_align_items_baseline.rs similarity index 100% rename from tests/generated/grid_align_items_baseline.rs rename to tests/generated/grid/grid_align_items_baseline.rs diff --git a/tests/generated/grid_align_items_baseline_child.rs b/tests/generated/grid/grid_align_items_baseline_child.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_child.rs rename to tests/generated/grid/grid_align_items_baseline_child.rs diff --git a/tests/generated/grid_align_items_baseline_child_margin.rs b/tests/generated/grid/grid_align_items_baseline_child_margin.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_child_margin.rs rename to tests/generated/grid/grid_align_items_baseline_child_margin.rs diff --git a/tests/generated/grid_align_items_baseline_child_margin_percent.rs b/tests/generated/grid/grid_align_items_baseline_child_margin_percent.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_child_margin_percent.rs rename to tests/generated/grid/grid_align_items_baseline_child_margin_percent.rs diff --git a/tests/generated/grid_align_items_baseline_child_multiline.rs b/tests/generated/grid/grid_align_items_baseline_child_multiline.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_child_multiline.rs rename to tests/generated/grid/grid_align_items_baseline_child_multiline.rs diff --git a/tests/generated/grid_align_items_baseline_child_multiline_no_override_on_secondline.rs b/tests/generated/grid/grid_align_items_baseline_child_multiline_no_override_on_secondline.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_child_multiline_no_override_on_secondline.rs rename to tests/generated/grid/grid_align_items_baseline_child_multiline_no_override_on_secondline.rs diff --git a/tests/generated/grid_align_items_baseline_child_multiline_override.rs b/tests/generated/grid/grid_align_items_baseline_child_multiline_override.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_child_multiline_override.rs rename to tests/generated/grid/grid_align_items_baseline_child_multiline_override.rs diff --git a/tests/generated/grid_align_items_baseline_child_padding.rs b/tests/generated/grid/grid_align_items_baseline_child_padding.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_child_padding.rs rename to tests/generated/grid/grid_align_items_baseline_child_padding.rs diff --git a/tests/generated/grid_align_items_baseline_child_top.rs b/tests/generated/grid/grid_align_items_baseline_child_top.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_child_top.rs rename to tests/generated/grid/grid_align_items_baseline_child_top.rs diff --git a/tests/generated/grid_align_items_baseline_child_top2.rs b/tests/generated/grid/grid_align_items_baseline_child_top2.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_child_top2.rs rename to tests/generated/grid/grid_align_items_baseline_child_top2.rs diff --git a/tests/generated/grid_align_items_baseline_complex.rs b/tests/generated/grid/grid_align_items_baseline_complex.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_complex.rs rename to tests/generated/grid/grid_align_items_baseline_complex.rs diff --git a/tests/generated/grid_align_items_baseline_double_nested_child.rs b/tests/generated/grid/grid_align_items_baseline_double_nested_child.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_double_nested_child.rs rename to tests/generated/grid/grid_align_items_baseline_double_nested_child.rs diff --git a/tests/generated/grid_align_items_baseline_multiline.rs b/tests/generated/grid/grid_align_items_baseline_multiline.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_multiline.rs rename to tests/generated/grid/grid_align_items_baseline_multiline.rs diff --git a/tests/generated/grid_align_items_baseline_multiline_column.rs b/tests/generated/grid/grid_align_items_baseline_multiline_column.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_multiline_column.rs rename to tests/generated/grid/grid_align_items_baseline_multiline_column.rs diff --git a/tests/generated/grid_align_items_baseline_multiline_row_and_column.rs b/tests/generated/grid/grid_align_items_baseline_multiline_row_and_column.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_multiline_row_and_column.rs rename to tests/generated/grid/grid_align_items_baseline_multiline_row_and_column.rs diff --git a/tests/generated/grid_align_items_baseline_nested_column.rs b/tests/generated/grid/grid_align_items_baseline_nested_column.rs similarity index 100% rename from tests/generated/grid_align_items_baseline_nested_column.rs rename to tests/generated/grid/grid_align_items_baseline_nested_column.rs diff --git a/tests/generated/grid_align_items_sized_center.rs b/tests/generated/grid/grid_align_items_sized_center.rs similarity index 100% rename from tests/generated/grid_align_items_sized_center.rs rename to tests/generated/grid/grid_align_items_sized_center.rs diff --git a/tests/generated/grid_align_items_sized_end.rs b/tests/generated/grid/grid_align_items_sized_end.rs similarity index 100% rename from tests/generated/grid_align_items_sized_end.rs rename to tests/generated/grid/grid_align_items_sized_end.rs diff --git a/tests/generated/grid_align_items_sized_start.rs b/tests/generated/grid/grid_align_items_sized_start.rs similarity index 100% rename from tests/generated/grid_align_items_sized_start.rs rename to tests/generated/grid/grid_align_items_sized_start.rs diff --git a/tests/generated/grid_align_items_sized_stretch.rs b/tests/generated/grid/grid_align_items_sized_stretch.rs similarity index 100% rename from tests/generated/grid_align_items_sized_stretch.rs rename to tests/generated/grid/grid_align_items_sized_stretch.rs diff --git a/tests/generated/grid_align_self_sized_all.rs b/tests/generated/grid/grid_align_self_sized_all.rs similarity index 100% rename from tests/generated/grid_align_self_sized_all.rs rename to tests/generated/grid/grid_align_self_sized_all.rs diff --git a/tests/generated/grid_aspect_ratio_absolute_aspect_ratio_overrides_height_of_full_inset.rs b/tests/generated/grid/grid_aspect_ratio_absolute_aspect_ratio_overrides_height_of_full_inset.rs similarity index 100% rename from tests/generated/grid_aspect_ratio_absolute_aspect_ratio_overrides_height_of_full_inset.rs rename to tests/generated/grid/grid_aspect_ratio_absolute_aspect_ratio_overrides_height_of_full_inset.rs diff --git a/tests/generated/grid_aspect_ratio_absolute_fill_height_from_inset.rs b/tests/generated/grid/grid_aspect_ratio_absolute_fill_height_from_inset.rs similarity index 100% rename from tests/generated/grid_aspect_ratio_absolute_fill_height_from_inset.rs rename to tests/generated/grid/grid_aspect_ratio_absolute_fill_height_from_inset.rs diff --git a/tests/generated/grid_aspect_ratio_absolute_fill_width_from_inset.rs b/tests/generated/grid/grid_aspect_ratio_absolute_fill_width_from_inset.rs similarity index 100% rename from tests/generated/grid_aspect_ratio_absolute_fill_width_from_inset.rs rename to tests/generated/grid/grid_aspect_ratio_absolute_fill_width_from_inset.rs diff --git a/tests/generated/grid_aspect_ratio_absolute_height_overrides_inset.rs b/tests/generated/grid/grid_aspect_ratio_absolute_height_overrides_inset.rs similarity index 100% rename from tests/generated/grid_aspect_ratio_absolute_height_overrides_inset.rs rename to tests/generated/grid/grid_aspect_ratio_absolute_height_overrides_inset.rs diff --git a/tests/generated/grid_aspect_ratio_absolute_width_overrides_inset.rs b/tests/generated/grid/grid_aspect_ratio_absolute_width_overrides_inset.rs similarity index 100% rename from tests/generated/grid_aspect_ratio_absolute_width_overrides_inset.rs rename to tests/generated/grid/grid_aspect_ratio_absolute_width_overrides_inset.rs diff --git a/tests/generated/grid_aspect_ratio_child_fill_content_height.rs b/tests/generated/grid/grid_aspect_ratio_child_fill_content_height.rs similarity index 95% rename from tests/generated/grid_aspect_ratio_child_fill_content_height.rs rename to tests/generated/grid/grid_aspect_ratio_child_fill_content_height.rs index 2d7a5ac4d..fb083a550 100644 --- a/tests/generated/grid_aspect_ratio_child_fill_content_height.rs +++ b/tests/generated/grid/grid_aspect_ratio_child_fill_content_height.rs @@ -8,11 +8,11 @@ fn grid_aspect_ratio_child_fill_content_height() { taffy::style::Style { aspect_ratio: Some(0.5f32), ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, Some(0.5f32), ) }), diff --git a/tests/generated/grid_aspect_ratio_child_fill_content_width.rs b/tests/generated/grid/grid_aspect_ratio_child_fill_content_width.rs similarity index 95% rename from tests/generated/grid_aspect_ratio_child_fill_content_width.rs rename to tests/generated/grid/grid_aspect_ratio_child_fill_content_width.rs index b73ac79e8..8ed5ac429 100644 --- a/tests/generated/grid_aspect_ratio_child_fill_content_width.rs +++ b/tests/generated/grid/grid_aspect_ratio_child_fill_content_width.rs @@ -8,11 +8,11 @@ fn grid_aspect_ratio_child_fill_content_width() { taffy::style::Style { aspect_ratio: Some(2f32), ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, Some(2f32), ) }), diff --git a/tests/generated/grid_aspect_ratio_fill_child_height.rs b/tests/generated/grid/grid_aspect_ratio_fill_child_height.rs similarity index 100% rename from tests/generated/grid_aspect_ratio_fill_child_height.rs rename to tests/generated/grid/grid_aspect_ratio_fill_child_height.rs diff --git a/tests/generated/grid_aspect_ratio_fill_child_max_height.rs b/tests/generated/grid/grid_aspect_ratio_fill_child_max_height.rs similarity index 95% rename from tests/generated/grid_aspect_ratio_fill_child_max_height.rs rename to tests/generated/grid/grid_aspect_ratio_fill_child_max_height.rs index 26d2786a1..0e1a42941 100644 --- a/tests/generated/grid_aspect_ratio_fill_child_max_height.rs +++ b/tests/generated/grid/grid_aspect_ratio_fill_child_max_height.rs @@ -12,11 +12,11 @@ fn grid_aspect_ratio_fill_child_max_height() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Vertical, + crate::generated::WritingMode::Vertical, Some(2f32), ) }), diff --git a/tests/generated/grid_aspect_ratio_fill_child_max_width.rs b/tests/generated/grid/grid_aspect_ratio_fill_child_max_width.rs similarity index 95% rename from tests/generated/grid_aspect_ratio_fill_child_max_width.rs rename to tests/generated/grid/grid_aspect_ratio_fill_child_max_width.rs index 60e965ed4..802bcdd30 100644 --- a/tests/generated/grid_aspect_ratio_fill_child_max_width.rs +++ b/tests/generated/grid/grid_aspect_ratio_fill_child_max_width.rs @@ -12,11 +12,11 @@ fn grid_aspect_ratio_fill_child_max_width() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, Some(2f32), ) }), diff --git a/tests/generated/grid_aspect_ratio_fill_child_min_height.rs b/tests/generated/grid/grid_aspect_ratio_fill_child_min_height.rs similarity index 100% rename from tests/generated/grid_aspect_ratio_fill_child_min_height.rs rename to tests/generated/grid/grid_aspect_ratio_fill_child_min_height.rs diff --git a/tests/generated/grid_aspect_ratio_fill_child_min_width.rs b/tests/generated/grid/grid_aspect_ratio_fill_child_min_width.rs similarity index 95% rename from tests/generated/grid_aspect_ratio_fill_child_min_width.rs rename to tests/generated/grid/grid_aspect_ratio_fill_child_min_width.rs index 842d2d0b8..59c8e0d75 100644 --- a/tests/generated/grid_aspect_ratio_fill_child_min_width.rs +++ b/tests/generated/grid/grid_aspect_ratio_fill_child_min_width.rs @@ -12,11 +12,11 @@ fn grid_aspect_ratio_fill_child_min_width() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "\n \n "; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, Some(2f32), ) }), diff --git a/tests/generated/grid_aspect_ratio_fill_child_width.rs b/tests/generated/grid/grid_aspect_ratio_fill_child_width.rs similarity index 100% rename from tests/generated/grid_aspect_ratio_fill_child_width.rs rename to tests/generated/grid/grid_aspect_ratio_fill_child_width.rs diff --git a/tests/generated/grid_aspect_ratio_overriden_by_explicit_sizes.rs b/tests/generated/grid/grid_aspect_ratio_overriden_by_explicit_sizes.rs similarity index 100% rename from tests/generated/grid_aspect_ratio_overriden_by_explicit_sizes.rs rename to tests/generated/grid/grid_aspect_ratio_overriden_by_explicit_sizes.rs diff --git a/tests/generated/grid_aspect_ratio_overriden_by_explicit_sizes_flex.rs b/tests/generated/grid/grid_aspect_ratio_overriden_by_explicit_sizes_flex.rs similarity index 100% rename from tests/generated/grid_aspect_ratio_overriden_by_explicit_sizes_flex.rs rename to tests/generated/grid/grid_aspect_ratio_overriden_by_explicit_sizes_flex.rs diff --git a/tests/generated/grid_auto_columns.rs b/tests/generated/grid/grid_auto_columns.rs similarity index 100% rename from tests/generated/grid_auto_columns.rs rename to tests/generated/grid/grid_auto_columns.rs diff --git a/tests/generated/grid_auto_columns_fixed_width.rs b/tests/generated/grid/grid_auto_columns_fixed_width.rs similarity index 100% rename from tests/generated/grid_auto_columns_fixed_width.rs rename to tests/generated/grid/grid_auto_columns_fixed_width.rs diff --git a/tests/generated/grid_auto_fill_fixed_size.rs b/tests/generated/grid/grid_auto_fill_fixed_size.rs similarity index 100% rename from tests/generated/grid_auto_fill_fixed_size.rs rename to tests/generated/grid/grid_auto_fill_fixed_size.rs diff --git a/tests/generated/grid_auto_fill_with_empty_auto_track.rs b/tests/generated/grid/grid_auto_fill_with_empty_auto_track.rs similarity index 100% rename from tests/generated/grid_auto_fill_with_empty_auto_track.rs rename to tests/generated/grid/grid_auto_fill_with_empty_auto_track.rs diff --git a/tests/generated/grid_auto_fit_with_empty_auto_track.rs b/tests/generated/grid/grid_auto_fit_with_empty_auto_track.rs similarity index 100% rename from tests/generated/grid_auto_fit_with_empty_auto_track.rs rename to tests/generated/grid/grid_auto_fit_with_empty_auto_track.rs diff --git a/tests/generated/grid_auto_rows.rs b/tests/generated/grid/grid_auto_rows.rs similarity index 100% rename from tests/generated/grid_auto_rows.rs rename to tests/generated/grid/grid_auto_rows.rs diff --git a/tests/generated/grid_auto_single_item.rs b/tests/generated/grid/grid_auto_single_item.rs similarity index 100% rename from tests/generated/grid_auto_single_item.rs rename to tests/generated/grid/grid_auto_single_item.rs diff --git a/tests/generated/grid_auto_single_item_fixed_width.rs b/tests/generated/grid/grid_auto_single_item_fixed_width.rs similarity index 100% rename from tests/generated/grid_auto_single_item_fixed_width.rs rename to tests/generated/grid/grid_auto_single_item_fixed_width.rs diff --git a/tests/generated/grid_auto_single_item_fixed_width_with_definite_width.rs b/tests/generated/grid/grid_auto_single_item_fixed_width_with_definite_width.rs similarity index 100% rename from tests/generated/grid_auto_single_item_fixed_width_with_definite_width.rs rename to tests/generated/grid/grid_auto_single_item_fixed_width_with_definite_width.rs diff --git a/tests/generated/grid_auto_takes_precedence_over_fr.rs b/tests/generated/grid/grid_auto_takes_precedence_over_fr.rs similarity index 100% rename from tests/generated/grid_auto_takes_precedence_over_fr.rs rename to tests/generated/grid/grid_auto_takes_precedence_over_fr.rs diff --git a/tests/generated/grid_available_space_greater_than_max_content.rs b/tests/generated/grid/grid_available_space_greater_than_max_content.rs similarity index 93% rename from tests/generated/grid_available_space_greater_than_max_content.rs rename to tests/generated/grid/grid_available_space_greater_than_max_content.rs index 879569e90..d935e1d8e 100644 --- a/tests/generated/grid_available_space_greater_than_max_content.rs +++ b/tests/generated/grid/grid_available_space_greater_than_max_content.rs @@ -8,11 +8,11 @@ fn grid_available_space_greater_than_max_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -23,11 +23,11 @@ fn grid_available_space_greater_than_max_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_available_space_smaller_than_max_content.rs b/tests/generated/grid/grid_available_space_smaller_than_max_content.rs similarity index 93% rename from tests/generated/grid_available_space_smaller_than_max_content.rs rename to tests/generated/grid/grid_available_space_smaller_than_max_content.rs index ace528be8..b72a9224b 100644 --- a/tests/generated/grid_available_space_smaller_than_max_content.rs +++ b/tests/generated/grid/grid_available_space_smaller_than_max_content.rs @@ -8,11 +8,11 @@ fn grid_available_space_smaller_than_max_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -23,11 +23,11 @@ fn grid_available_space_smaller_than_max_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_available_space_smaller_than_min_content.rs b/tests/generated/grid/grid_available_space_smaller_than_min_content.rs similarity index 92% rename from tests/generated/grid_available_space_smaller_than_min_content.rs rename to tests/generated/grid/grid_available_space_smaller_than_min_content.rs index cf08aae36..c5bc43d1f 100644 --- a/tests/generated/grid_available_space_smaller_than_min_content.rs +++ b/tests/generated/grid/grid_available_space_smaller_than_min_content.rs @@ -8,11 +8,11 @@ fn grid_available_space_smaller_than_min_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -23,11 +23,11 @@ fn grid_available_space_smaller_than_min_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_basic.rs b/tests/generated/grid/grid_basic.rs similarity index 100% rename from tests/generated/grid_basic.rs rename to tests/generated/grid/grid_basic.rs diff --git a/tests/generated/grid_basic_implicit_tracks.rs b/tests/generated/grid/grid_basic_implicit_tracks.rs similarity index 100% rename from tests/generated/grid_basic_implicit_tracks.rs rename to tests/generated/grid/grid_basic_implicit_tracks.rs diff --git a/tests/generated/grid_basic_with_overflow.rs b/tests/generated/grid/grid_basic_with_overflow.rs similarity index 100% rename from tests/generated/grid_basic_with_overflow.rs rename to tests/generated/grid/grid_basic_with_overflow.rs diff --git a/tests/generated/grid_basic_with_padding.rs b/tests/generated/grid/grid_basic_with_padding.rs similarity index 100% rename from tests/generated/grid_basic_with_padding.rs rename to tests/generated/grid/grid_basic_with_padding.rs diff --git a/tests/generated/grid_display_none_fixed_size.rs b/tests/generated/grid/grid_display_none_fixed_size.rs similarity index 100% rename from tests/generated/grid_display_none_fixed_size.rs rename to tests/generated/grid/grid_display_none_fixed_size.rs diff --git a/tests/generated/grid_fit_content_percent_definite_argument.rs b/tests/generated/grid/grid_fit_content_percent_definite_argument.rs similarity index 94% rename from tests/generated/grid_fit_content_percent_definite_argument.rs rename to tests/generated/grid/grid_fit_content_percent_definite_argument.rs index da3c53e97..be2a51e4b 100644 --- a/tests/generated/grid_fit_content_percent_definite_argument.rs +++ b/tests/generated/grid/grid_fit_content_percent_definite_argument.rs @@ -8,11 +8,11 @@ fn grid_fit_content_percent_definite_argument() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_fit_content_percent_definite_max_content.rs b/tests/generated/grid/grid_fit_content_percent_definite_max_content.rs similarity index 94% rename from tests/generated/grid_fit_content_percent_definite_max_content.rs rename to tests/generated/grid/grid_fit_content_percent_definite_max_content.rs index f0e07f6aa..73a172ac5 100644 --- a/tests/generated/grid_fit_content_percent_definite_max_content.rs +++ b/tests/generated/grid/grid_fit_content_percent_definite_max_content.rs @@ -8,11 +8,11 @@ fn grid_fit_content_percent_definite_max_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_fit_content_percent_definite_min_content.rs b/tests/generated/grid/grid_fit_content_percent_definite_min_content.rs similarity index 94% rename from tests/generated/grid_fit_content_percent_definite_min_content.rs rename to tests/generated/grid/grid_fit_content_percent_definite_min_content.rs index 109cf67f7..a20ba0ad2 100644 --- a/tests/generated/grid_fit_content_percent_definite_min_content.rs +++ b/tests/generated/grid/grid_fit_content_percent_definite_min_content.rs @@ -8,11 +8,11 @@ fn grid_fit_content_percent_definite_min_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_fit_content_percent_indefinite_argument.rs b/tests/generated/grid/grid_fit_content_percent_indefinite_argument.rs similarity index 94% rename from tests/generated/grid_fit_content_percent_indefinite_argument.rs rename to tests/generated/grid/grid_fit_content_percent_indefinite_argument.rs index bd6be2e20..47c789535 100644 --- a/tests/generated/grid_fit_content_percent_indefinite_argument.rs +++ b/tests/generated/grid/grid_fit_content_percent_indefinite_argument.rs @@ -8,11 +8,11 @@ fn grid_fit_content_percent_indefinite_argument() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_fit_content_percent_indefinite_max_content.rs b/tests/generated/grid/grid_fit_content_percent_indefinite_max_content.rs similarity index 94% rename from tests/generated/grid_fit_content_percent_indefinite_max_content.rs rename to tests/generated/grid/grid_fit_content_percent_indefinite_max_content.rs index ef3abe66e..c43de3c9d 100644 --- a/tests/generated/grid_fit_content_percent_indefinite_max_content.rs +++ b/tests/generated/grid/grid_fit_content_percent_indefinite_max_content.rs @@ -8,11 +8,11 @@ fn grid_fit_content_percent_indefinite_max_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_fit_content_percent_indefinite_max_content_hidden.rs b/tests/generated/grid/grid_fit_content_percent_indefinite_max_content_hidden.rs similarity index 95% rename from tests/generated/grid_fit_content_percent_indefinite_max_content_hidden.rs rename to tests/generated/grid/grid_fit_content_percent_indefinite_max_content_hidden.rs index bd4749bbd..bb0568849 100644 --- a/tests/generated/grid_fit_content_percent_indefinite_max_content_hidden.rs +++ b/tests/generated/grid/grid_fit_content_percent_indefinite_max_content_hidden.rs @@ -15,11 +15,11 @@ fn grid_fit_content_percent_indefinite_max_content_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_fit_content_percent_indefinite_min_content.rs b/tests/generated/grid/grid_fit_content_percent_indefinite_min_content.rs similarity index 94% rename from tests/generated/grid_fit_content_percent_indefinite_min_content.rs rename to tests/generated/grid/grid_fit_content_percent_indefinite_min_content.rs index db6c79564..5a61bae07 100644 --- a/tests/generated/grid_fit_content_percent_indefinite_min_content.rs +++ b/tests/generated/grid/grid_fit_content_percent_indefinite_min_content.rs @@ -8,11 +8,11 @@ fn grid_fit_content_percent_indefinite_min_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_fit_content_percent_indefinite_min_content_hidden.rs b/tests/generated/grid/grid_fit_content_percent_indefinite_min_content_hidden.rs similarity index 95% rename from tests/generated/grid_fit_content_percent_indefinite_min_content_hidden.rs rename to tests/generated/grid/grid_fit_content_percent_indefinite_min_content_hidden.rs index b94308a53..523f9dcf2 100644 --- a/tests/generated/grid_fit_content_percent_indefinite_min_content_hidden.rs +++ b/tests/generated/grid/grid_fit_content_percent_indefinite_min_content_hidden.rs @@ -15,11 +15,11 @@ fn grid_fit_content_percent_indefinite_min_content_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_fit_content_points_argument.rs b/tests/generated/grid/grid_fit_content_points_argument.rs similarity index 94% rename from tests/generated/grid_fit_content_points_argument.rs rename to tests/generated/grid/grid_fit_content_points_argument.rs index 06762d6c7..4200d7cfd 100644 --- a/tests/generated/grid_fit_content_points_argument.rs +++ b/tests/generated/grid/grid_fit_content_points_argument.rs @@ -8,11 +8,11 @@ fn grid_fit_content_points_argument() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_fit_content_points_max_content.rs b/tests/generated/grid/grid_fit_content_points_max_content.rs similarity index 94% rename from tests/generated/grid_fit_content_points_max_content.rs rename to tests/generated/grid/grid_fit_content_points_max_content.rs index a6d638ad4..4db8c4a87 100644 --- a/tests/generated/grid_fit_content_points_max_content.rs +++ b/tests/generated/grid/grid_fit_content_points_max_content.rs @@ -8,11 +8,11 @@ fn grid_fit_content_points_max_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_fit_content_points_min_content.rs b/tests/generated/grid/grid_fit_content_points_min_content.rs similarity index 94% rename from tests/generated/grid_fit_content_points_min_content.rs rename to tests/generated/grid/grid_fit_content_points_min_content.rs index a76717c23..a45ca80ca 100644 --- a/tests/generated/grid_fit_content_points_min_content.rs +++ b/tests/generated/grid/grid_fit_content_points_min_content.rs @@ -8,11 +8,11 @@ fn grid_fit_content_points_min_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_fit_content_points_min_content_hidden.rs b/tests/generated/grid/grid_fit_content_points_min_content_hidden.rs similarity index 95% rename from tests/generated/grid_fit_content_points_min_content_hidden.rs rename to tests/generated/grid/grid_fit_content_points_min_content_hidden.rs index ff23d6d00..99429c848 100644 --- a/tests/generated/grid_fit_content_points_min_content_hidden.rs +++ b/tests/generated/grid/grid_fit_content_points_min_content_hidden.rs @@ -15,11 +15,11 @@ fn grid_fit_content_points_min_content_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_fr_fixed_size_no_content_proportions.rs b/tests/generated/grid/grid_fr_fixed_size_no_content_proportions.rs similarity index 100% rename from tests/generated/grid_fr_fixed_size_no_content_proportions.rs rename to tests/generated/grid/grid_fr_fixed_size_no_content_proportions.rs diff --git a/tests/generated/grid_fr_fixed_size_no_content_proportions_sub_1_sum.rs b/tests/generated/grid/grid_fr_fixed_size_no_content_proportions_sub_1_sum.rs similarity index 100% rename from tests/generated/grid_fr_fixed_size_no_content_proportions_sub_1_sum.rs rename to tests/generated/grid/grid_fr_fixed_size_no_content_proportions_sub_1_sum.rs diff --git a/tests/generated/grid_fr_fixed_size_single_item.rs b/tests/generated/grid/grid_fr_fixed_size_single_item.rs similarity index 100% rename from tests/generated/grid_fr_fixed_size_single_item.rs rename to tests/generated/grid/grid_fr_fixed_size_single_item.rs diff --git a/tests/generated/grid_fr_no_sized_items_indefinite.rs b/tests/generated/grid/grid_fr_no_sized_items_indefinite.rs similarity index 100% rename from tests/generated/grid_fr_no_sized_items_indefinite.rs rename to tests/generated/grid/grid_fr_no_sized_items_indefinite.rs diff --git a/tests/generated/grid_fr_single_item_indefinite.rs b/tests/generated/grid/grid_fr_single_item_indefinite.rs similarity index 100% rename from tests/generated/grid_fr_single_item_indefinite.rs rename to tests/generated/grid/grid_fr_single_item_indefinite.rs diff --git a/tests/generated/grid_fr_span_2_proportion.rs b/tests/generated/grid/grid_fr_span_2_proportion.rs similarity index 100% rename from tests/generated/grid_fr_span_2_proportion.rs rename to tests/generated/grid/grid_fr_span_2_proportion.rs diff --git a/tests/generated/grid_fr_span_2_proportion_sub_1_sum.rs b/tests/generated/grid/grid_fr_span_2_proportion_sub_1_sum.rs similarity index 100% rename from tests/generated/grid_fr_span_2_proportion_sub_1_sum.rs rename to tests/generated/grid/grid_fr_span_2_proportion_sub_1_sum.rs diff --git a/tests/generated/grid_fr_span_2_proportion_with_non_spanned_track.rs b/tests/generated/grid/grid_fr_span_2_proportion_with_non_spanned_track.rs similarity index 100% rename from tests/generated/grid_fr_span_2_proportion_with_non_spanned_track.rs rename to tests/generated/grid/grid_fr_span_2_proportion_with_non_spanned_track.rs diff --git a/tests/generated/grid_fr_span_2_proportion_zero_sum.rs b/tests/generated/grid/grid_fr_span_2_proportion_zero_sum.rs similarity index 100% rename from tests/generated/grid_fr_span_2_proportion_zero_sum.rs rename to tests/generated/grid/grid_fr_span_2_proportion_zero_sum.rs diff --git a/tests/generated/grid_fr_span_2_proportion_zero_sum_with_non_spanned_track.rs b/tests/generated/grid/grid_fr_span_2_proportion_zero_sum_with_non_spanned_track.rs similarity index 100% rename from tests/generated/grid_fr_span_2_proportion_zero_sum_with_non_spanned_track.rs rename to tests/generated/grid/grid_fr_span_2_proportion_zero_sum_with_non_spanned_track.rs diff --git a/tests/generated/grid_gap.rs b/tests/generated/grid/grid_gap.rs similarity index 100% rename from tests/generated/grid_gap.rs rename to tests/generated/grid/grid_gap.rs diff --git a/tests/generated/grid_hidden.rs b/tests/generated/grid/grid_hidden.rs similarity index 100% rename from tests/generated/grid_hidden.rs rename to tests/generated/grid/grid_hidden.rs diff --git a/tests/generated/grid_justify_content_center.rs b/tests/generated/grid/grid_justify_content_center.rs similarity index 100% rename from tests/generated/grid_justify_content_center.rs rename to tests/generated/grid/grid_justify_content_center.rs diff --git a/tests/generated/grid_justify_content_center_with_padding_border.rs b/tests/generated/grid/grid_justify_content_center_with_padding_border.rs similarity index 100% rename from tests/generated/grid_justify_content_center_with_padding_border.rs rename to tests/generated/grid/grid_justify_content_center_with_padding_border.rs diff --git a/tests/generated/grid_justify_content_end.rs b/tests/generated/grid/grid_justify_content_end.rs similarity index 100% rename from tests/generated/grid_justify_content_end.rs rename to tests/generated/grid/grid_justify_content_end.rs diff --git a/tests/generated/grid_justify_content_end_with_padding_border.rs b/tests/generated/grid/grid_justify_content_end_with_padding_border.rs similarity index 100% rename from tests/generated/grid_justify_content_end_with_padding_border.rs rename to tests/generated/grid/grid_justify_content_end_with_padding_border.rs diff --git a/tests/generated/grid_justify_content_space_around.rs b/tests/generated/grid/grid_justify_content_space_around.rs similarity index 100% rename from tests/generated/grid_justify_content_space_around.rs rename to tests/generated/grid/grid_justify_content_space_around.rs diff --git a/tests/generated/grid_justify_content_space_around_with_padding_border.rs b/tests/generated/grid/grid_justify_content_space_around_with_padding_border.rs similarity index 100% rename from tests/generated/grid_justify_content_space_around_with_padding_border.rs rename to tests/generated/grid/grid_justify_content_space_around_with_padding_border.rs diff --git a/tests/generated/grid_justify_content_space_between.rs b/tests/generated/grid/grid_justify_content_space_between.rs similarity index 100% rename from tests/generated/grid_justify_content_space_between.rs rename to tests/generated/grid/grid_justify_content_space_between.rs diff --git a/tests/generated/grid_justify_content_space_between_with_padding_border.rs b/tests/generated/grid/grid_justify_content_space_between_with_padding_border.rs similarity index 100% rename from tests/generated/grid_justify_content_space_between_with_padding_border.rs rename to tests/generated/grid/grid_justify_content_space_between_with_padding_border.rs diff --git a/tests/generated/grid_justify_content_space_evenly.rs b/tests/generated/grid/grid_justify_content_space_evenly.rs similarity index 100% rename from tests/generated/grid_justify_content_space_evenly.rs rename to tests/generated/grid/grid_justify_content_space_evenly.rs diff --git a/tests/generated/grid_justify_content_space_evenly_with_padding_border.rs b/tests/generated/grid/grid_justify_content_space_evenly_with_padding_border.rs similarity index 100% rename from tests/generated/grid_justify_content_space_evenly_with_padding_border.rs rename to tests/generated/grid/grid_justify_content_space_evenly_with_padding_border.rs diff --git a/tests/generated/grid_justify_content_start.rs b/tests/generated/grid/grid_justify_content_start.rs similarity index 100% rename from tests/generated/grid_justify_content_start.rs rename to tests/generated/grid/grid_justify_content_start.rs diff --git a/tests/generated/grid_justify_content_start_with_padding_border.rs b/tests/generated/grid/grid_justify_content_start_with_padding_border.rs similarity index 100% rename from tests/generated/grid_justify_content_start_with_padding_border.rs rename to tests/generated/grid/grid_justify_content_start_with_padding_border.rs diff --git a/tests/generated/grid_justify_items_sized_center.rs b/tests/generated/grid/grid_justify_items_sized_center.rs similarity index 100% rename from tests/generated/grid_justify_items_sized_center.rs rename to tests/generated/grid/grid_justify_items_sized_center.rs diff --git a/tests/generated/grid_justify_items_sized_end.rs b/tests/generated/grid/grid_justify_items_sized_end.rs similarity index 100% rename from tests/generated/grid_justify_items_sized_end.rs rename to tests/generated/grid/grid_justify_items_sized_end.rs diff --git a/tests/generated/grid_justify_items_sized_start.rs b/tests/generated/grid/grid_justify_items_sized_start.rs similarity index 100% rename from tests/generated/grid_justify_items_sized_start.rs rename to tests/generated/grid/grid_justify_items_sized_start.rs diff --git a/tests/generated/grid_justify_items_sized_stretch.rs b/tests/generated/grid/grid_justify_items_sized_stretch.rs similarity index 100% rename from tests/generated/grid_justify_items_sized_stretch.rs rename to tests/generated/grid/grid_justify_items_sized_stretch.rs diff --git a/tests/generated/grid_justify_self_sized_all.rs b/tests/generated/grid/grid_justify_self_sized_all.rs similarity index 100% rename from tests/generated/grid_justify_self_sized_all.rs rename to tests/generated/grid/grid_justify_self_sized_all.rs diff --git a/tests/generated/grid_margins_auto_margins.rs b/tests/generated/grid/grid_margins_auto_margins.rs similarity index 100% rename from tests/generated/grid_margins_auto_margins.rs rename to tests/generated/grid/grid_margins_auto_margins.rs diff --git a/tests/generated/grid_margins_auto_margins_override_stretch.rs b/tests/generated/grid/grid_margins_auto_margins_override_stretch.rs similarity index 98% rename from tests/generated/grid_margins_auto_margins_override_stretch.rs rename to tests/generated/grid/grid_margins_auto_margins_override_stretch.rs index b7fb01447..9fcde484f 100644 --- a/tests/generated/grid_margins_auto_margins_override_stretch.rs +++ b/tests/generated/grid/grid_margins_auto_margins_override_stretch.rs @@ -24,11 +24,11 @@ fn grid_margins_auto_margins_override_stretch() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_margins_fixed_center.rs b/tests/generated/grid/grid_margins_fixed_center.rs similarity index 100% rename from tests/generated/grid_margins_fixed_center.rs rename to tests/generated/grid/grid_margins_fixed_center.rs diff --git a/tests/generated/grid_margins_fixed_end.rs b/tests/generated/grid/grid_margins_fixed_end.rs similarity index 100% rename from tests/generated/grid_margins_fixed_end.rs rename to tests/generated/grid/grid_margins_fixed_end.rs diff --git a/tests/generated/grid_margins_fixed_start.rs b/tests/generated/grid/grid_margins_fixed_start.rs similarity index 100% rename from tests/generated/grid_margins_fixed_start.rs rename to tests/generated/grid/grid_margins_fixed_start.rs diff --git a/tests/generated/grid_margins_fixed_stretch.rs b/tests/generated/grid/grid_margins_fixed_stretch.rs similarity index 100% rename from tests/generated/grid_margins_fixed_stretch.rs rename to tests/generated/grid/grid_margins_fixed_stretch.rs diff --git a/tests/generated/grid_margins_percent_center.rs b/tests/generated/grid/grid_margins_percent_center.rs similarity index 100% rename from tests/generated/grid_margins_percent_center.rs rename to tests/generated/grid/grid_margins_percent_center.rs diff --git a/tests/generated/grid_margins_percent_end.rs b/tests/generated/grid/grid_margins_percent_end.rs similarity index 100% rename from tests/generated/grid_margins_percent_end.rs rename to tests/generated/grid/grid_margins_percent_end.rs diff --git a/tests/generated/grid_margins_percent_start.rs b/tests/generated/grid/grid_margins_percent_start.rs similarity index 100% rename from tests/generated/grid_margins_percent_start.rs rename to tests/generated/grid/grid_margins_percent_start.rs diff --git a/tests/generated/grid_margins_percent_stretch.rs b/tests/generated/grid/grid_margins_percent_stretch.rs similarity index 100% rename from tests/generated/grid_margins_percent_stretch.rs rename to tests/generated/grid/grid_margins_percent_stretch.rs diff --git a/tests/generated/grid_max_content_maximum_single_item.rs b/tests/generated/grid/grid_max_content_maximum_single_item.rs similarity index 98% rename from tests/generated/grid_max_content_maximum_single_item.rs rename to tests/generated/grid/grid_max_content_maximum_single_item.rs index fb99480ae..3724e63a1 100644 --- a/tests/generated/grid_max_content_maximum_single_item.rs +++ b/tests/generated/grid/grid_max_content_maximum_single_item.rs @@ -9,11 +9,11 @@ fn grid_max_content_maximum_single_item() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_max_content_single_item.rs b/tests/generated/grid/grid_max_content_single_item.rs similarity index 98% rename from tests/generated/grid_max_content_single_item.rs rename to tests/generated/grid/grid_max_content_single_item.rs index 65872afd0..656718a8e 100644 --- a/tests/generated/grid_max_content_single_item.rs +++ b/tests/generated/grid/grid_max_content_single_item.rs @@ -9,11 +9,11 @@ fn grid_max_content_single_item() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_max_content_single_item_margin_auto.rs b/tests/generated/grid/grid_max_content_single_item_margin_auto.rs similarity index 98% rename from tests/generated/grid_max_content_single_item_margin_auto.rs rename to tests/generated/grid/grid_max_content_single_item_margin_auto.rs index 5731e5959..de9fa152c 100644 --- a/tests/generated/grid_max_content_single_item_margin_auto.rs +++ b/tests/generated/grid/grid_max_content_single_item_margin_auto.rs @@ -17,11 +17,11 @@ fn grid_max_content_single_item_margin_auto() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_max_content_single_item_margin_fixed.rs b/tests/generated/grid/grid_max_content_single_item_margin_fixed.rs similarity index 98% rename from tests/generated/grid_max_content_single_item_margin_fixed.rs rename to tests/generated/grid/grid_max_content_single_item_margin_fixed.rs index fdf5aad9f..25957a693 100644 --- a/tests/generated/grid_max_content_single_item_margin_fixed.rs +++ b/tests/generated/grid/grid_max_content_single_item_margin_fixed.rs @@ -17,11 +17,11 @@ fn grid_max_content_single_item_margin_fixed() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_max_content_single_item_margin_percent.rs b/tests/generated/grid/grid_max_content_single_item_margin_percent.rs similarity index 98% rename from tests/generated/grid_max_content_single_item_margin_percent.rs rename to tests/generated/grid/grid_max_content_single_item_margin_percent.rs index e7aed84fc..ac7deb0e8 100644 --- a/tests/generated/grid_max_content_single_item_margin_percent.rs +++ b/tests/generated/grid/grid_max_content_single_item_margin_percent.rs @@ -17,11 +17,11 @@ fn grid_max_content_single_item_margin_percent() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_max_content_single_item_span_2.rs b/tests/generated/grid/grid_max_content_single_item_span_2.rs similarity index 98% rename from tests/generated/grid_max_content_single_item_span_2.rs rename to tests/generated/grid/grid_max_content_single_item_span_2.rs index 5e28a7b60..565387a45 100644 --- a/tests/generated/grid_max_content_single_item_span_2.rs +++ b/tests/generated/grid/grid_max_content_single_item_span_2.rs @@ -15,11 +15,11 @@ fn grid_max_content_single_item_span_2() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_max_content_single_item_span_2_gap_fixed.rs b/tests/generated/grid/grid_max_content_single_item_span_2_gap_fixed.rs similarity index 98% rename from tests/generated/grid_max_content_single_item_span_2_gap_fixed.rs rename to tests/generated/grid/grid_max_content_single_item_span_2_gap_fixed.rs index 506bb2cdb..71c515460 100644 --- a/tests/generated/grid_max_content_single_item_span_2_gap_fixed.rs +++ b/tests/generated/grid/grid_max_content_single_item_span_2_gap_fixed.rs @@ -15,11 +15,11 @@ fn grid_max_content_single_item_span_2_gap_fixed() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_max_content_single_item_span_2_gap_percent_definite.rs b/tests/generated/grid/grid_max_content_single_item_span_2_gap_percent_definite.rs similarity index 98% rename from tests/generated/grid_max_content_single_item_span_2_gap_percent_definite.rs rename to tests/generated/grid/grid_max_content_single_item_span_2_gap_percent_definite.rs index 0481e9a7e..f0f0dea7c 100644 --- a/tests/generated/grid_max_content_single_item_span_2_gap_percent_definite.rs +++ b/tests/generated/grid/grid_max_content_single_item_span_2_gap_percent_definite.rs @@ -15,11 +15,11 @@ fn grid_max_content_single_item_span_2_gap_percent_definite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_max_content_single_item_span_2_gap_percent_indefinite.rs b/tests/generated/grid/grid_max_content_single_item_span_2_gap_percent_indefinite.rs similarity index 98% rename from tests/generated/grid_max_content_single_item_span_2_gap_percent_indefinite.rs rename to tests/generated/grid/grid_max_content_single_item_span_2_gap_percent_indefinite.rs index c7cbad15d..483a2e695 100644 --- a/tests/generated/grid_max_content_single_item_span_2_gap_percent_indefinite.rs +++ b/tests/generated/grid/grid_max_content_single_item_span_2_gap_percent_indefinite.rs @@ -15,11 +15,11 @@ fn grid_max_content_single_item_span_2_gap_percent_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_max_width_greater_than_max_content.rs b/tests/generated/grid/grid_max_width_greater_than_max_content.rs similarity index 94% rename from tests/generated/grid_max_width_greater_than_max_content.rs rename to tests/generated/grid/grid_max_width_greater_than_max_content.rs index c61a38964..bb10a199c 100644 --- a/tests/generated/grid_max_width_greater_than_max_content.rs +++ b/tests/generated/grid/grid_max_width_greater_than_max_content.rs @@ -8,11 +8,11 @@ fn grid_max_width_greater_than_max_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -23,11 +23,11 @@ fn grid_max_width_greater_than_max_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_max_width_less_than_max_content_with_min_content.rs b/tests/generated/grid/grid_max_width_less_than_max_content_with_min_content.rs similarity index 94% rename from tests/generated/grid_max_width_less_than_max_content_with_min_content.rs rename to tests/generated/grid/grid_max_width_less_than_max_content_with_min_content.rs index 10b00d993..d7c31484b 100644 --- a/tests/generated/grid_max_width_less_than_max_content_with_min_content.rs +++ b/tests/generated/grid/grid_max_width_less_than_max_content_with_min_content.rs @@ -8,11 +8,11 @@ fn grid_max_width_less_than_max_content_with_min_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -23,11 +23,11 @@ fn grid_max_width_less_than_max_content_with_min_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_max_width_smaller_than_max_content.rs b/tests/generated/grid/grid_max_width_smaller_than_max_content.rs similarity index 94% rename from tests/generated/grid_max_width_smaller_than_max_content.rs rename to tests/generated/grid/grid_max_width_smaller_than_max_content.rs index 8cdc32c4d..34379d6e3 100644 --- a/tests/generated/grid_max_width_smaller_than_max_content.rs +++ b/tests/generated/grid/grid_max_width_smaller_than_max_content.rs @@ -8,11 +8,11 @@ fn grid_max_width_smaller_than_max_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -23,11 +23,11 @@ fn grid_max_width_smaller_than_max_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_max_width_smaller_than_min_content.rs b/tests/generated/grid/grid_max_width_smaller_than_min_content.rs similarity index 94% rename from tests/generated/grid_max_width_smaller_than_min_content.rs rename to tests/generated/grid/grid_max_width_smaller_than_min_content.rs index 72b04512f..25680f976 100644 --- a/tests/generated/grid_max_width_smaller_than_min_content.rs +++ b/tests/generated/grid/grid_max_width_smaller_than_min_content.rs @@ -8,11 +8,11 @@ fn grid_max_width_smaller_than_min_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -23,11 +23,11 @@ fn grid_max_width_smaller_than_min_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_min_content_flex_column.rs b/tests/generated/grid/grid_min_content_flex_column.rs similarity index 92% rename from tests/generated/grid_min_content_flex_column.rs rename to tests/generated/grid/grid_min_content_flex_column.rs index 91d107424..bbc494654 100644 --- a/tests/generated/grid_min_content_flex_column.rs +++ b/tests/generated/grid/grid_min_content_flex_column.rs @@ -8,11 +8,11 @@ fn grid_min_content_flex_column() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -23,11 +23,11 @@ fn grid_min_content_flex_column() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -38,11 +38,11 @@ fn grid_min_content_flex_column() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_min_content_flex_row.rs b/tests/generated/grid/grid_min_content_flex_row.rs similarity index 92% rename from tests/generated/grid_min_content_flex_row.rs rename to tests/generated/grid/grid_min_content_flex_row.rs index b506ab545..bef43aa9e 100644 --- a/tests/generated/grid_min_content_flex_row.rs +++ b/tests/generated/grid/grid_min_content_flex_row.rs @@ -8,11 +8,11 @@ fn grid_min_content_flex_row() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -23,11 +23,11 @@ fn grid_min_content_flex_row() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -38,11 +38,11 @@ fn grid_min_content_flex_row() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_min_content_flex_single_item.rs b/tests/generated/grid/grid_min_content_flex_single_item.rs similarity index 98% rename from tests/generated/grid_min_content_flex_single_item.rs rename to tests/generated/grid/grid_min_content_flex_single_item.rs index 320abc2fd..fda18a643 100644 --- a/tests/generated/grid_min_content_flex_single_item.rs +++ b/tests/generated/grid/grid_min_content_flex_single_item.rs @@ -23,11 +23,11 @@ fn grid_min_content_flex_single_item() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_min_content_flex_single_item_margin_auto.rs b/tests/generated/grid/grid_min_content_flex_single_item_margin_auto.rs similarity index 98% rename from tests/generated/grid_min_content_flex_single_item_margin_auto.rs rename to tests/generated/grid/grid_min_content_flex_single_item_margin_auto.rs index c27b3e292..6277beb46 100644 --- a/tests/generated/grid_min_content_flex_single_item_margin_auto.rs +++ b/tests/generated/grid/grid_min_content_flex_single_item_margin_auto.rs @@ -35,11 +35,11 @@ fn grid_min_content_flex_single_item_margin_auto() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_min_content_flex_single_item_margin_fixed.rs b/tests/generated/grid/grid_min_content_flex_single_item_margin_fixed.rs similarity index 98% rename from tests/generated/grid_min_content_flex_single_item_margin_fixed.rs rename to tests/generated/grid/grid_min_content_flex_single_item_margin_fixed.rs index 2f50dd5db..134b5f108 100644 --- a/tests/generated/grid_min_content_flex_single_item_margin_fixed.rs +++ b/tests/generated/grid/grid_min_content_flex_single_item_margin_fixed.rs @@ -35,11 +35,11 @@ fn grid_min_content_flex_single_item_margin_fixed() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_min_content_flex_single_item_margin_percent.rs b/tests/generated/grid/grid_min_content_flex_single_item_margin_percent.rs similarity index 98% rename from tests/generated/grid_min_content_flex_single_item_margin_percent.rs rename to tests/generated/grid/grid_min_content_flex_single_item_margin_percent.rs index 49bca1e4c..cce04d6e7 100644 --- a/tests/generated/grid_min_content_flex_single_item_margin_percent.rs +++ b/tests/generated/grid/grid_min_content_flex_single_item_margin_percent.rs @@ -35,11 +35,11 @@ fn grid_min_content_flex_single_item_margin_percent() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_min_content_maximum_single_item.rs b/tests/generated/grid/grid_min_content_maximum_single_item.rs similarity index 98% rename from tests/generated/grid_min_content_maximum_single_item.rs rename to tests/generated/grid/grid_min_content_maximum_single_item.rs index 81420a4f1..45c9750d3 100644 --- a/tests/generated/grid_min_content_maximum_single_item.rs +++ b/tests/generated/grid/grid_min_content_maximum_single_item.rs @@ -9,11 +9,11 @@ fn grid_min_content_maximum_single_item() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_min_content_single_item.rs b/tests/generated/grid/grid_min_content_single_item.rs similarity index 98% rename from tests/generated/grid_min_content_single_item.rs rename to tests/generated/grid/grid_min_content_single_item.rs index 1735f86c6..f1d243d61 100644 --- a/tests/generated/grid_min_content_single_item.rs +++ b/tests/generated/grid/grid_min_content_single_item.rs @@ -9,11 +9,11 @@ fn grid_min_content_single_item() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_auto_fixed_10px.rs b/tests/generated/grid/grid_minmax_auto_fixed_10px.rs similarity index 94% rename from tests/generated/grid_minmax_auto_fixed_10px.rs rename to tests/generated/grid/grid_minmax_auto_fixed_10px.rs index 15079c725..64ce798c9 100644 --- a/tests/generated/grid_minmax_auto_fixed_10px.rs +++ b/tests/generated/grid/grid_minmax_auto_fixed_10px.rs @@ -8,11 +8,11 @@ fn grid_minmax_auto_fixed_10px() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_auto_max_content.rs b/tests/generated/grid/grid_minmax_auto_max_content.rs similarity index 94% rename from tests/generated/grid_minmax_auto_max_content.rs rename to tests/generated/grid/grid_minmax_auto_max_content.rs index 548abde48..982fd3fe3 100644 --- a/tests/generated/grid_minmax_auto_max_content.rs +++ b/tests/generated/grid/grid_minmax_auto_max_content.rs @@ -8,11 +8,11 @@ fn grid_minmax_auto_max_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_auto_min_content.rs b/tests/generated/grid/grid_minmax_auto_min_content.rs similarity index 94% rename from tests/generated/grid_minmax_auto_min_content.rs rename to tests/generated/grid/grid_minmax_auto_min_content.rs index c2a03a025..d3627efd4 100644 --- a/tests/generated/grid_minmax_auto_min_content.rs +++ b/tests/generated/grid/grid_minmax_auto_min_content.rs @@ -8,11 +8,11 @@ fn grid_minmax_auto_min_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_auto_percent_definite.rs b/tests/generated/grid/grid_minmax_auto_percent_definite.rs similarity index 94% rename from tests/generated/grid_minmax_auto_percent_definite.rs rename to tests/generated/grid/grid_minmax_auto_percent_definite.rs index 88729428b..5cea766f6 100644 --- a/tests/generated/grid_minmax_auto_percent_definite.rs +++ b/tests/generated/grid/grid_minmax_auto_percent_definite.rs @@ -8,11 +8,11 @@ fn grid_minmax_auto_percent_definite() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_auto_percent_indefinite.rs b/tests/generated/grid/grid_minmax_auto_percent_indefinite.rs similarity index 94% rename from tests/generated/grid_minmax_auto_percent_indefinite.rs rename to tests/generated/grid/grid_minmax_auto_percent_indefinite.rs index 3d6fd04bf..a130ced17 100644 --- a/tests/generated/grid_minmax_auto_percent_indefinite.rs +++ b/tests/generated/grid/grid_minmax_auto_percent_indefinite.rs @@ -8,11 +8,11 @@ fn grid_minmax_auto_percent_indefinite() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_column_fixed_width_above_range.rs b/tests/generated/grid/grid_minmax_column_fixed_width_above_range.rs similarity index 100% rename from tests/generated/grid_minmax_column_fixed_width_above_range.rs rename to tests/generated/grid/grid_minmax_column_fixed_width_above_range.rs diff --git a/tests/generated/grid_minmax_column_fixed_width_below_range.rs b/tests/generated/grid/grid_minmax_column_fixed_width_below_range.rs similarity index 100% rename from tests/generated/grid_minmax_column_fixed_width_below_range.rs rename to tests/generated/grid/grid_minmax_column_fixed_width_below_range.rs diff --git a/tests/generated/grid_minmax_column_fixed_width_within_range.rs b/tests/generated/grid/grid_minmax_column_fixed_width_within_range.rs similarity index 100% rename from tests/generated/grid_minmax_column_fixed_width_within_range.rs rename to tests/generated/grid/grid_minmax_column_fixed_width_within_range.rs diff --git a/tests/generated/grid_minmax_column_indefinite.rs b/tests/generated/grid/grid_minmax_column_indefinite.rs similarity index 100% rename from tests/generated/grid_minmax_column_indefinite.rs rename to tests/generated/grid/grid_minmax_column_indefinite.rs diff --git a/tests/generated/grid_minmax_column_with_auto_fixed.rs b/tests/generated/grid/grid_minmax_column_with_auto_fixed.rs similarity index 100% rename from tests/generated/grid_minmax_column_with_auto_fixed.rs rename to tests/generated/grid/grid_minmax_column_with_auto_fixed.rs diff --git a/tests/generated/grid_minmax_column_with_fr_fixed.rs b/tests/generated/grid/grid_minmax_column_with_fr_fixed.rs similarity index 100% rename from tests/generated/grid_minmax_column_with_fr_fixed.rs rename to tests/generated/grid/grid_minmax_column_with_fr_fixed.rs diff --git a/tests/generated/grid_minmax_max_content_1fr.rs b/tests/generated/grid/grid_minmax_max_content_1fr.rs similarity index 94% rename from tests/generated/grid_minmax_max_content_1fr.rs rename to tests/generated/grid/grid_minmax_max_content_1fr.rs index fb96cd14e..5a3c3bd15 100644 --- a/tests/generated/grid_minmax_max_content_1fr.rs +++ b/tests/generated/grid/grid_minmax_max_content_1fr.rs @@ -8,11 +8,11 @@ fn grid_minmax_max_content_1fr() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_max_content_auto.rs b/tests/generated/grid/grid_minmax_max_content_auto.rs similarity index 94% rename from tests/generated/grid_minmax_max_content_auto.rs rename to tests/generated/grid/grid_minmax_max_content_auto.rs index c2ee7d4f9..5741d3ef5 100644 --- a/tests/generated/grid_minmax_max_content_auto.rs +++ b/tests/generated/grid/grid_minmax_max_content_auto.rs @@ -8,11 +8,11 @@ fn grid_minmax_max_content_auto() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_max_content_fixed_10px.rs b/tests/generated/grid/grid_minmax_max_content_fixed_10px.rs similarity index 94% rename from tests/generated/grid_minmax_max_content_fixed_10px.rs rename to tests/generated/grid/grid_minmax_max_content_fixed_10px.rs index 3ac6bb7bc..3c6a76868 100644 --- a/tests/generated/grid_minmax_max_content_fixed_10px.rs +++ b/tests/generated/grid/grid_minmax_max_content_fixed_10px.rs @@ -8,11 +8,11 @@ fn grid_minmax_max_content_fixed_10px() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_max_content_min_content.rs b/tests/generated/grid/grid_minmax_max_content_min_content.rs similarity index 94% rename from tests/generated/grid_minmax_max_content_min_content.rs rename to tests/generated/grid/grid_minmax_max_content_min_content.rs index 9d9f252c1..a103a7fae 100644 --- a/tests/generated/grid_minmax_max_content_min_content.rs +++ b/tests/generated/grid/grid_minmax_max_content_min_content.rs @@ -8,11 +8,11 @@ fn grid_minmax_max_content_min_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_max_content_percent_definite.rs b/tests/generated/grid/grid_minmax_max_content_percent_definite.rs similarity index 94% rename from tests/generated/grid_minmax_max_content_percent_definite.rs rename to tests/generated/grid/grid_minmax_max_content_percent_definite.rs index 2cd62dd6f..52ebf4c1b 100644 --- a/tests/generated/grid_minmax_max_content_percent_definite.rs +++ b/tests/generated/grid/grid_minmax_max_content_percent_definite.rs @@ -8,11 +8,11 @@ fn grid_minmax_max_content_percent_definite() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_max_content_percent_indefinite.rs b/tests/generated/grid/grid_minmax_max_content_percent_indefinite.rs similarity index 94% rename from tests/generated/grid_minmax_max_content_percent_indefinite.rs rename to tests/generated/grid/grid_minmax_max_content_percent_indefinite.rs index bd45de88d..0a45cd33b 100644 --- a/tests/generated/grid_minmax_max_content_percent_indefinite.rs +++ b/tests/generated/grid/grid_minmax_max_content_percent_indefinite.rs @@ -8,11 +8,11 @@ fn grid_minmax_max_content_percent_indefinite() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_min_content_1fr.rs b/tests/generated/grid/grid_minmax_min_content_1fr.rs similarity index 94% rename from tests/generated/grid_minmax_min_content_1fr.rs rename to tests/generated/grid/grid_minmax_min_content_1fr.rs index 94c348e92..d083bb31f 100644 --- a/tests/generated/grid_minmax_min_content_1fr.rs +++ b/tests/generated/grid/grid_minmax_min_content_1fr.rs @@ -8,11 +8,11 @@ fn grid_minmax_min_content_1fr() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_min_content_auto.rs b/tests/generated/grid/grid_minmax_min_content_auto.rs similarity index 94% rename from tests/generated/grid_minmax_min_content_auto.rs rename to tests/generated/grid/grid_minmax_min_content_auto.rs index 99b6f05da..492a6feea 100644 --- a/tests/generated/grid_minmax_min_content_auto.rs +++ b/tests/generated/grid/grid_minmax_min_content_auto.rs @@ -8,11 +8,11 @@ fn grid_minmax_min_content_auto() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_min_content_fixed_10px.rs b/tests/generated/grid/grid_minmax_min_content_fixed_10px.rs similarity index 94% rename from tests/generated/grid_minmax_min_content_fixed_10px.rs rename to tests/generated/grid/grid_minmax_min_content_fixed_10px.rs index 18334bc09..ff1423396 100644 --- a/tests/generated/grid_minmax_min_content_fixed_10px.rs +++ b/tests/generated/grid/grid_minmax_min_content_fixed_10px.rs @@ -8,11 +8,11 @@ fn grid_minmax_min_content_fixed_10px() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_min_content_max_content.rs b/tests/generated/grid/grid_minmax_min_content_max_content.rs similarity index 94% rename from tests/generated/grid_minmax_min_content_max_content.rs rename to tests/generated/grid/grid_minmax_min_content_max_content.rs index ad7e44fc8..0b5f8a57f 100644 --- a/tests/generated/grid_minmax_min_content_max_content.rs +++ b/tests/generated/grid/grid_minmax_min_content_max_content.rs @@ -8,11 +8,11 @@ fn grid_minmax_min_content_max_content() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_min_content_percent_definite.rs b/tests/generated/grid/grid_minmax_min_content_percent_definite.rs similarity index 94% rename from tests/generated/grid_minmax_min_content_percent_definite.rs rename to tests/generated/grid/grid_minmax_min_content_percent_definite.rs index 5b86025d0..759096e84 100644 --- a/tests/generated/grid_minmax_min_content_percent_definite.rs +++ b/tests/generated/grid/grid_minmax_min_content_percent_definite.rs @@ -8,11 +8,11 @@ fn grid_minmax_min_content_percent_definite() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_minmax_min_content_percent_indefinite.rs b/tests/generated/grid/grid_minmax_min_content_percent_indefinite.rs similarity index 94% rename from tests/generated/grid_minmax_min_content_percent_indefinite.rs rename to tests/generated/grid/grid_minmax_min_content_percent_indefinite.rs index 3f93e492d..d76d2b9bd 100644 --- a/tests/generated/grid_minmax_min_content_percent_indefinite.rs +++ b/tests/generated/grid/grid_minmax_min_content_percent_indefinite.rs @@ -8,11 +8,11 @@ fn grid_minmax_min_content_percent_indefinite() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_out_of_order_items.rs b/tests/generated/grid/grid_out_of_order_items.rs similarity index 100% rename from tests/generated/grid_out_of_order_items.rs rename to tests/generated/grid/grid_out_of_order_items.rs diff --git a/tests/generated/grid_overflow_inline_axis_hidden.rs b/tests/generated/grid/grid_overflow_inline_axis_hidden.rs similarity index 95% rename from tests/generated/grid_overflow_inline_axis_hidden.rs rename to tests/generated/grid/grid_overflow_inline_axis_hidden.rs index 268fe6b98..071ea6896 100644 --- a/tests/generated/grid_overflow_inline_axis_hidden.rs +++ b/tests/generated/grid/grid_overflow_inline_axis_hidden.rs @@ -15,11 +15,11 @@ fn grid_overflow_inline_axis_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_overflow_inline_axis_scroll.rs b/tests/generated/grid/grid_overflow_inline_axis_scroll.rs similarity index 95% rename from tests/generated/grid_overflow_inline_axis_scroll.rs rename to tests/generated/grid/grid_overflow_inline_axis_scroll.rs index 6429c2509..7fac02426 100644 --- a/tests/generated/grid_overflow_inline_axis_scroll.rs +++ b/tests/generated/grid/grid_overflow_inline_axis_scroll.rs @@ -15,11 +15,11 @@ fn grid_overflow_inline_axis_scroll() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_overflow_inline_axis_visible.rs b/tests/generated/grid/grid_overflow_inline_axis_visible.rs similarity index 94% rename from tests/generated/grid_overflow_inline_axis_visible.rs rename to tests/generated/grid/grid_overflow_inline_axis_visible.rs index fc400e473..39328e75f 100644 --- a/tests/generated/grid_overflow_inline_axis_visible.rs +++ b/tests/generated/grid/grid_overflow_inline_axis_visible.rs @@ -8,11 +8,11 @@ fn grid_overflow_inline_axis_visible() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_overflow_rows.rs b/tests/generated/grid/grid_overflow_rows.rs similarity index 97% rename from tests/generated/grid_overflow_rows.rs rename to tests/generated/grid/grid_overflow_rows.rs index 4dd5fc7a0..f58cf5a53 100644 --- a/tests/generated/grid_overflow_rows.rs +++ b/tests/generated/grid/grid_overflow_rows.rs @@ -11,11 +11,11 @@ fn grid_overflow_rows() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHHHHHHHHHH\u{200b}HHHHHHHHHHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_overflow_scrollbars_overriden_by_available_space.rs b/tests/generated/grid/grid_overflow_scrollbars_overriden_by_available_space.rs similarity index 100% rename from tests/generated/grid_overflow_scrollbars_overriden_by_available_space.rs rename to tests/generated/grid/grid_overflow_scrollbars_overriden_by_available_space.rs diff --git a/tests/generated/grid_overflow_scrollbars_overriden_by_max_size.rs b/tests/generated/grid/grid_overflow_scrollbars_overriden_by_max_size.rs similarity index 100% rename from tests/generated/grid_overflow_scrollbars_overriden_by_max_size.rs rename to tests/generated/grid/grid_overflow_scrollbars_overriden_by_max_size.rs diff --git a/tests/generated/grid_overflow_scrollbars_overriden_by_size.rs b/tests/generated/grid/grid_overflow_scrollbars_overriden_by_size.rs similarity index 100% rename from tests/generated/grid_overflow_scrollbars_overriden_by_size.rs rename to tests/generated/grid/grid_overflow_scrollbars_overriden_by_size.rs diff --git a/tests/generated/grid_overflow_scrollbars_take_up_space_both_axis.rs b/tests/generated/grid/grid_overflow_scrollbars_take_up_space_both_axis.rs similarity index 100% rename from tests/generated/grid_overflow_scrollbars_take_up_space_both_axis.rs rename to tests/generated/grid/grid_overflow_scrollbars_take_up_space_both_axis.rs diff --git a/tests/generated/grid_overflow_scrollbars_take_up_space_x_axis.rs b/tests/generated/grid/grid_overflow_scrollbars_take_up_space_x_axis.rs similarity index 100% rename from tests/generated/grid_overflow_scrollbars_take_up_space_x_axis.rs rename to tests/generated/grid/grid_overflow_scrollbars_take_up_space_x_axis.rs diff --git a/tests/generated/grid_overflow_scrollbars_take_up_space_y_axis.rs b/tests/generated/grid/grid_overflow_scrollbars_take_up_space_y_axis.rs similarity index 100% rename from tests/generated/grid_overflow_scrollbars_take_up_space_y_axis.rs rename to tests/generated/grid/grid_overflow_scrollbars_take_up_space_y_axis.rs diff --git a/tests/generated/grid_padding_border_overrides_container_max_size.rs b/tests/generated/grid/grid_padding_border_overrides_container_max_size.rs similarity index 100% rename from tests/generated/grid_padding_border_overrides_container_max_size.rs rename to tests/generated/grid/grid_padding_border_overrides_container_max_size.rs diff --git a/tests/generated/grid_padding_border_overrides_container_size.rs b/tests/generated/grid/grid_padding_border_overrides_container_size.rs similarity index 100% rename from tests/generated/grid_padding_border_overrides_container_size.rs rename to tests/generated/grid/grid_padding_border_overrides_container_size.rs diff --git a/tests/generated/grid_padding_border_overrides_max_size.rs b/tests/generated/grid/grid_padding_border_overrides_max_size.rs similarity index 100% rename from tests/generated/grid_padding_border_overrides_max_size.rs rename to tests/generated/grid/grid_padding_border_overrides_max_size.rs diff --git a/tests/generated/grid_padding_border_overrides_min_size.rs b/tests/generated/grid/grid_padding_border_overrides_min_size.rs similarity index 100% rename from tests/generated/grid_padding_border_overrides_min_size.rs rename to tests/generated/grid/grid_padding_border_overrides_min_size.rs diff --git a/tests/generated/grid_padding_border_overrides_size.rs b/tests/generated/grid/grid_padding_border_overrides_size.rs similarity index 100% rename from tests/generated/grid_padding_border_overrides_size.rs rename to tests/generated/grid/grid_padding_border_overrides_size.rs diff --git a/tests/generated/grid_percent_item_inside_stretch_item.rs b/tests/generated/grid/grid_percent_item_inside_stretch_item.rs similarity index 100% rename from tests/generated/grid_percent_item_inside_stretch_item.rs rename to tests/generated/grid/grid_percent_item_inside_stretch_item.rs diff --git a/tests/generated/grid_percent_items_nested_inside_stretch_alignment.rs b/tests/generated/grid/grid_percent_items_nested_inside_stretch_alignment.rs similarity index 100% rename from tests/generated/grid_percent_items_nested_inside_stretch_alignment.rs rename to tests/generated/grid/grid_percent_items_nested_inside_stretch_alignment.rs diff --git a/tests/generated/grid_percent_items_nested_moderate.rs b/tests/generated/grid/grid_percent_items_nested_moderate.rs similarity index 100% rename from tests/generated/grid_percent_items_nested_moderate.rs rename to tests/generated/grid/grid_percent_items_nested_moderate.rs diff --git a/tests/generated/grid_percent_items_nested_with_margin.rs b/tests/generated/grid/grid_percent_items_nested_with_margin.rs similarity index 100% rename from tests/generated/grid_percent_items_nested_with_margin.rs rename to tests/generated/grid/grid_percent_items_nested_with_margin.rs diff --git a/tests/generated/grid_percent_items_nested_with_padding_margin.rs b/tests/generated/grid/grid_percent_items_nested_with_padding_margin.rs similarity index 100% rename from tests/generated/grid_percent_items_nested_with_padding_margin.rs rename to tests/generated/grid/grid_percent_items_nested_with_padding_margin.rs diff --git a/tests/generated/grid_percent_items_width_and_margin.rs b/tests/generated/grid/grid_percent_items_width_and_margin.rs similarity index 100% rename from tests/generated/grid_percent_items_width_and_margin.rs rename to tests/generated/grid/grid_percent_items_width_and_margin.rs diff --git a/tests/generated/grid_percent_items_width_and_padding.rs b/tests/generated/grid/grid_percent_items_width_and_padding.rs similarity index 100% rename from tests/generated/grid_percent_items_width_and_padding.rs rename to tests/generated/grid/grid_percent_items_width_and_padding.rs diff --git a/tests/generated/grid_percent_tracks_definite_overflow.rs b/tests/generated/grid/grid_percent_tracks_definite_overflow.rs similarity index 100% rename from tests/generated/grid_percent_tracks_definite_overflow.rs rename to tests/generated/grid/grid_percent_tracks_definite_overflow.rs diff --git a/tests/generated/grid_percent_tracks_definite_underflow.rs b/tests/generated/grid/grid_percent_tracks_definite_underflow.rs similarity index 100% rename from tests/generated/grid_percent_tracks_definite_underflow.rs rename to tests/generated/grid/grid_percent_tracks_definite_underflow.rs diff --git a/tests/generated/grid_percent_tracks_indefinite_only.rs b/tests/generated/grid/grid_percent_tracks_indefinite_only.rs similarity index 100% rename from tests/generated/grid_percent_tracks_indefinite_only.rs rename to tests/generated/grid/grid_percent_tracks_indefinite_only.rs diff --git a/tests/generated/grid_percent_tracks_indefinite_with_content_overflow.rs b/tests/generated/grid/grid_percent_tracks_indefinite_with_content_overflow.rs similarity index 100% rename from tests/generated/grid_percent_tracks_indefinite_with_content_overflow.rs rename to tests/generated/grid/grid_percent_tracks_indefinite_with_content_overflow.rs diff --git a/tests/generated/grid_percent_tracks_indefinite_with_content_underflow.rs b/tests/generated/grid/grid_percent_tracks_indefinite_with_content_underflow.rs similarity index 100% rename from tests/generated/grid_percent_tracks_indefinite_with_content_underflow.rs rename to tests/generated/grid/grid_percent_tracks_indefinite_with_content_underflow.rs diff --git a/tests/generated/grid_placement_auto_negative.rs b/tests/generated/grid/grid_placement_auto_negative.rs similarity index 100% rename from tests/generated/grid_placement_auto_negative.rs rename to tests/generated/grid/grid_placement_auto_negative.rs diff --git a/tests/generated/grid_placement_definite_in_secondary_axis_with_fully_definite_negative.rs b/tests/generated/grid/grid_placement_definite_in_secondary_axis_with_fully_definite_negative.rs similarity index 100% rename from tests/generated/grid_placement_definite_in_secondary_axis_with_fully_definite_negative.rs rename to tests/generated/grid/grid_placement_definite_in_secondary_axis_with_fully_definite_negative.rs diff --git a/tests/generated/grid_relative_all_sides.rs b/tests/generated/grid/grid_relative_all_sides.rs similarity index 100% rename from tests/generated/grid_relative_all_sides.rs rename to tests/generated/grid/grid_relative_all_sides.rs diff --git a/tests/generated/grid_relayout_vertical_text.rs b/tests/generated/grid/grid_relayout_vertical_text.rs similarity index 92% rename from tests/generated/grid_relayout_vertical_text.rs rename to tests/generated/grid/grid_relayout_vertical_text.rs index 8f59b4a54..626397f80 100644 --- a/tests/generated/grid_relayout_vertical_text.rs +++ b/tests/generated/grid/grid_relayout_vertical_text.rs @@ -8,11 +8,11 @@ fn grid_relayout_vertical_text() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Vertical, + crate::generated::WritingMode::Vertical, None, ) }), @@ -23,11 +23,11 @@ fn grid_relayout_vertical_text() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_repeat_integer.rs b/tests/generated/grid/grid_repeat_integer.rs similarity index 100% rename from tests/generated/grid_repeat_integer.rs rename to tests/generated/grid/grid_repeat_integer.rs diff --git a/tests/generated/grid_repeat_mixed.rs b/tests/generated/grid/grid_repeat_mixed.rs similarity index 100% rename from tests/generated/grid_repeat_mixed.rs rename to tests/generated/grid/grid_repeat_mixed.rs diff --git a/tests/generated/grid_size_child_fixed_tracks.rs b/tests/generated/grid/grid_size_child_fixed_tracks.rs similarity index 92% rename from tests/generated/grid_size_child_fixed_tracks.rs rename to tests/generated/grid/grid_size_child_fixed_tracks.rs index c719a2c96..0da7821cd 100644 --- a/tests/generated/grid_size_child_fixed_tracks.rs +++ b/tests/generated/grid/grid_size_child_fixed_tracks.rs @@ -12,11 +12,11 @@ fn grid_size_child_fixed_tracks() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -31,11 +31,11 @@ fn grid_size_child_fixed_tracks() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHH\u{200b}HHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -50,11 +50,11 @@ fn grid_size_child_fixed_tracks() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -70,11 +70,11 @@ fn grid_size_child_fixed_tracks() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -90,11 +90,11 @@ fn grid_size_child_fixed_tracks() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH\u{200b}HH\u{200b}HH\u{200b}HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_13_most_non_flex_with_minmax_indefinite.rs b/tests/generated/grid/grid_span_13_most_non_flex_with_minmax_indefinite.rs similarity index 98% rename from tests/generated/grid_span_13_most_non_flex_with_minmax_indefinite.rs rename to tests/generated/grid/grid_span_13_most_non_flex_with_minmax_indefinite.rs index 22c75dc33..cc9df8651 100644 --- a/tests/generated/grid_span_13_most_non_flex_with_minmax_indefinite.rs +++ b/tests/generated/grid/grid_span_13_most_non_flex_with_minmax_indefinite.rs @@ -11,11 +11,11 @@ fn grid_span_13_most_non_flex_with_minmax_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHHHHHHHHHH\u{200b}HHHHHHHHHHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_13_most_non_flex_with_minmax_indefinite_hidden.rs b/tests/generated/grid/grid_span_13_most_non_flex_with_minmax_indefinite_hidden.rs similarity index 98% rename from tests/generated/grid_span_13_most_non_flex_with_minmax_indefinite_hidden.rs rename to tests/generated/grid/grid_span_13_most_non_flex_with_minmax_indefinite_hidden.rs index a41245e1f..1100241a8 100644 --- a/tests/generated/grid_span_13_most_non_flex_with_minmax_indefinite_hidden.rs +++ b/tests/generated/grid/grid_span_13_most_non_flex_with_minmax_indefinite_hidden.rs @@ -16,11 +16,11 @@ fn grid_span_13_most_non_flex_with_minmax_indefinite_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHHHHHHHHHH\u{200b}HHHHHHHHHHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_max_content_auto_indefinite.rs b/tests/generated/grid/grid_span_2_max_content_auto_indefinite.rs similarity index 97% rename from tests/generated/grid_span_2_max_content_auto_indefinite.rs rename to tests/generated/grid/grid_span_2_max_content_auto_indefinite.rs index 6b1b33df9..3c796234f 100644 --- a/tests/generated/grid_span_2_max_content_auto_indefinite.rs +++ b/tests/generated/grid/grid_span_2_max_content_auto_indefinite.rs @@ -26,11 +26,11 @@ fn grid_span_2_max_content_auto_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_max_content_auto_indefinite_hidden.rs b/tests/generated/grid/grid_span_2_max_content_auto_indefinite_hidden.rs similarity index 100% rename from tests/generated/grid_span_2_max_content_auto_indefinite_hidden.rs rename to tests/generated/grid/grid_span_2_max_content_auto_indefinite_hidden.rs diff --git a/tests/generated/grid_span_2_max_content_fit_content_10px_indefinite.rs b/tests/generated/grid/grid_span_2_max_content_fit_content_10px_indefinite.rs similarity index 97% rename from tests/generated/grid_span_2_max_content_fit_content_10px_indefinite.rs rename to tests/generated/grid/grid_span_2_max_content_fit_content_10px_indefinite.rs index 2affac2db..5aa392272 100644 --- a/tests/generated/grid_span_2_max_content_fit_content_10px_indefinite.rs +++ b/tests/generated/grid/grid_span_2_max_content_fit_content_10px_indefinite.rs @@ -26,11 +26,11 @@ fn grid_span_2_max_content_fit_content_10px_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_max_content_fit_content_10px_indefinite_hidden.rs b/tests/generated/grid/grid_span_2_max_content_fit_content_10px_indefinite_hidden.rs similarity index 97% rename from tests/generated/grid_span_2_max_content_fit_content_10px_indefinite_hidden.rs rename to tests/generated/grid/grid_span_2_max_content_fit_content_10px_indefinite_hidden.rs index ba499d1cd..5564c2c42 100644 --- a/tests/generated/grid_span_2_max_content_fit_content_10px_indefinite_hidden.rs +++ b/tests/generated/grid/grid_span_2_max_content_fit_content_10px_indefinite_hidden.rs @@ -31,11 +31,11 @@ fn grid_span_2_max_content_fit_content_10px_indefinite_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_max_content_fit_content_80px_indefinite.rs b/tests/generated/grid/grid_span_2_max_content_fit_content_80px_indefinite.rs similarity index 97% rename from tests/generated/grid_span_2_max_content_fit_content_80px_indefinite.rs rename to tests/generated/grid/grid_span_2_max_content_fit_content_80px_indefinite.rs index 29b8dbfc8..be7c3f5b9 100644 --- a/tests/generated/grid_span_2_max_content_fit_content_80px_indefinite.rs +++ b/tests/generated/grid/grid_span_2_max_content_fit_content_80px_indefinite.rs @@ -26,11 +26,11 @@ fn grid_span_2_max_content_fit_content_80px_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_max_content_fit_content_80px_indefinite_hidden.rs b/tests/generated/grid/grid_span_2_max_content_fit_content_80px_indefinite_hidden.rs similarity index 97% rename from tests/generated/grid_span_2_max_content_fit_content_80px_indefinite_hidden.rs rename to tests/generated/grid/grid_span_2_max_content_fit_content_80px_indefinite_hidden.rs index 207de9796..b95a7f766 100644 --- a/tests/generated/grid_span_2_max_content_fit_content_80px_indefinite_hidden.rs +++ b/tests/generated/grid/grid_span_2_max_content_fit_content_80px_indefinite_hidden.rs @@ -31,11 +31,11 @@ fn grid_span_2_max_content_fit_content_80px_indefinite_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_max_content_max_content_indefinite.rs b/tests/generated/grid/grid_span_2_max_content_max_content_indefinite.rs similarity index 97% rename from tests/generated/grid_span_2_max_content_max_content_indefinite.rs rename to tests/generated/grid/grid_span_2_max_content_max_content_indefinite.rs index 3dca84357..a509d265a 100644 --- a/tests/generated/grid_span_2_max_content_max_content_indefinite.rs +++ b/tests/generated/grid/grid_span_2_max_content_max_content_indefinite.rs @@ -26,11 +26,11 @@ fn grid_span_2_max_content_max_content_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_min_content_auto_indefinite.rs b/tests/generated/grid/grid_span_2_min_content_auto_indefinite.rs similarity index 96% rename from tests/generated/grid_span_2_min_content_auto_indefinite.rs rename to tests/generated/grid/grid_span_2_min_content_auto_indefinite.rs index df0cfba8a..ef9405107 100644 --- a/tests/generated/grid_span_2_min_content_auto_indefinite.rs +++ b/tests/generated/grid/grid_span_2_min_content_auto_indefinite.rs @@ -13,11 +13,11 @@ fn grid_span_2_min_content_auto_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_min_content_auto_indefinite_hidden.rs b/tests/generated/grid/grid_span_2_min_content_auto_indefinite_hidden.rs similarity index 96% rename from tests/generated/grid_span_2_min_content_auto_indefinite_hidden.rs rename to tests/generated/grid/grid_span_2_min_content_auto_indefinite_hidden.rs index 2c116613b..eb72e0a16 100644 --- a/tests/generated/grid_span_2_min_content_auto_indefinite_hidden.rs +++ b/tests/generated/grid/grid_span_2_min_content_auto_indefinite_hidden.rs @@ -18,11 +18,11 @@ fn grid_span_2_min_content_auto_indefinite_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_min_content_fit_content_10px_indefinite.rs b/tests/generated/grid/grid_span_2_min_content_fit_content_10px_indefinite.rs similarity index 97% rename from tests/generated/grid_span_2_min_content_fit_content_10px_indefinite.rs rename to tests/generated/grid/grid_span_2_min_content_fit_content_10px_indefinite.rs index 9f873c1b6..358f3ad28 100644 --- a/tests/generated/grid_span_2_min_content_fit_content_10px_indefinite.rs +++ b/tests/generated/grid/grid_span_2_min_content_fit_content_10px_indefinite.rs @@ -26,11 +26,11 @@ fn grid_span_2_min_content_fit_content_10px_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_min_content_fit_content_10px_indefinite_hidden.rs b/tests/generated/grid/grid_span_2_min_content_fit_content_10px_indefinite_hidden.rs similarity index 97% rename from tests/generated/grid_span_2_min_content_fit_content_10px_indefinite_hidden.rs rename to tests/generated/grid/grid_span_2_min_content_fit_content_10px_indefinite_hidden.rs index 916156ee5..920c600d9 100644 --- a/tests/generated/grid_span_2_min_content_fit_content_10px_indefinite_hidden.rs +++ b/tests/generated/grid/grid_span_2_min_content_fit_content_10px_indefinite_hidden.rs @@ -31,11 +31,11 @@ fn grid_span_2_min_content_fit_content_10px_indefinite_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_min_content_fit_content_30px_indefinite.rs b/tests/generated/grid/grid_span_2_min_content_fit_content_30px_indefinite.rs similarity index 97% rename from tests/generated/grid_span_2_min_content_fit_content_30px_indefinite.rs rename to tests/generated/grid/grid_span_2_min_content_fit_content_30px_indefinite.rs index c7c38f130..ea2da939a 100644 --- a/tests/generated/grid_span_2_min_content_fit_content_30px_indefinite.rs +++ b/tests/generated/grid/grid_span_2_min_content_fit_content_30px_indefinite.rs @@ -26,11 +26,11 @@ fn grid_span_2_min_content_fit_content_30px_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_min_content_fit_content_30px_indefinite_hidden.rs b/tests/generated/grid/grid_span_2_min_content_fit_content_30px_indefinite_hidden.rs similarity index 97% rename from tests/generated/grid_span_2_min_content_fit_content_30px_indefinite_hidden.rs rename to tests/generated/grid/grid_span_2_min_content_fit_content_30px_indefinite_hidden.rs index 63b87b105..5d5ffd58c 100644 --- a/tests/generated/grid_span_2_min_content_fit_content_30px_indefinite_hidden.rs +++ b/tests/generated/grid/grid_span_2_min_content_fit_content_30px_indefinite_hidden.rs @@ -31,11 +31,11 @@ fn grid_span_2_min_content_fit_content_30px_indefinite_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_min_content_fit_content_80px_indefinite.rs b/tests/generated/grid/grid_span_2_min_content_fit_content_80px_indefinite.rs similarity index 97% rename from tests/generated/grid_span_2_min_content_fit_content_80px_indefinite.rs rename to tests/generated/grid/grid_span_2_min_content_fit_content_80px_indefinite.rs index a85aaaec3..6eb056233 100644 --- a/tests/generated/grid_span_2_min_content_fit_content_80px_indefinite.rs +++ b/tests/generated/grid/grid_span_2_min_content_fit_content_80px_indefinite.rs @@ -26,11 +26,11 @@ fn grid_span_2_min_content_fit_content_80px_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_min_content_fit_content_80px_indefinite_hidden.rs b/tests/generated/grid/grid_span_2_min_content_fit_content_80px_indefinite_hidden.rs similarity index 97% rename from tests/generated/grid_span_2_min_content_fit_content_80px_indefinite_hidden.rs rename to tests/generated/grid/grid_span_2_min_content_fit_content_80px_indefinite_hidden.rs index ecc9ef474..4f0123925 100644 --- a/tests/generated/grid_span_2_min_content_fit_content_80px_indefinite_hidden.rs +++ b/tests/generated/grid/grid_span_2_min_content_fit_content_80px_indefinite_hidden.rs @@ -31,11 +31,11 @@ fn grid_span_2_min_content_fit_content_80px_indefinite_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_min_content_max_content_indefinite.rs b/tests/generated/grid/grid_span_2_min_content_max_content_indefinite.rs similarity index 97% rename from tests/generated/grid_span_2_min_content_max_content_indefinite.rs rename to tests/generated/grid/grid_span_2_min_content_max_content_indefinite.rs index 2db3a2a20..c451e2002 100644 --- a/tests/generated/grid_span_2_min_content_max_content_indefinite.rs +++ b/tests/generated/grid/grid_span_2_min_content_max_content_indefinite.rs @@ -26,11 +26,11 @@ fn grid_span_2_min_content_max_content_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_2_min_content_min_content_indefinite.rs b/tests/generated/grid/grid_span_2_min_content_min_content_indefinite.rs similarity index 97% rename from tests/generated/grid_span_2_min_content_min_content_indefinite.rs rename to tests/generated/grid/grid_span_2_min_content_min_content_indefinite.rs index e96929685..9349e7e4e 100644 --- a/tests/generated/grid_span_2_min_content_min_content_indefinite.rs +++ b/tests/generated/grid/grid_span_2_min_content_min_content_indefinite.rs @@ -26,11 +26,11 @@ fn grid_span_2_min_content_min_content_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH\u{200b}HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_6_all_non_flex_indefinite.rs b/tests/generated/grid/grid_span_6_all_non_flex_indefinite.rs similarity index 98% rename from tests/generated/grid_span_6_all_non_flex_indefinite.rs rename to tests/generated/grid/grid_span_6_all_non_flex_indefinite.rs index 2949ebffb..c87311a43 100644 --- a/tests/generated/grid_span_6_all_non_flex_indefinite.rs +++ b/tests/generated/grid/grid_span_6_all_non_flex_indefinite.rs @@ -11,11 +11,11 @@ fn grid_span_6_all_non_flex_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHH\u{200b}HHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_6_all_non_flex_indefinite_hidden.rs b/tests/generated/grid/grid_span_6_all_non_flex_indefinite_hidden.rs similarity index 98% rename from tests/generated/grid_span_6_all_non_flex_indefinite_hidden.rs rename to tests/generated/grid/grid_span_6_all_non_flex_indefinite_hidden.rs index df35a351c..d107cc7b3 100644 --- a/tests/generated/grid_span_6_all_non_flex_indefinite_hidden.rs +++ b/tests/generated/grid/grid_span_6_all_non_flex_indefinite_hidden.rs @@ -16,11 +16,11 @@ fn grid_span_6_all_non_flex_indefinite_hidden() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHH\u{200b}HHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid_span_8_all_track_types_indefinite.rs b/tests/generated/grid/grid_span_8_all_track_types_indefinite.rs similarity index 98% rename from tests/generated/grid_span_8_all_track_types_indefinite.rs rename to tests/generated/grid/grid_span_8_all_track_types_indefinite.rs index 09f93a707..ea033c9de 100644 --- a/tests/generated/grid_span_8_all_track_types_indefinite.rs +++ b/tests/generated/grid/grid_span_8_all_track_types_indefinite.rs @@ -11,11 +11,11 @@ fn grid_span_8_all_track_types_indefinite() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHHHHHH\u{200b}HHHHHHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/grid/mod.rs b/tests/generated/grid/mod.rs new file mode 100644 index 000000000..6de672606 --- /dev/null +++ b/tests/generated/grid/mod.rs @@ -0,0 +1,478 @@ +#[cfg(feature = "grid")] +mod grid_absolute_align_self_sized_all; +#[cfg(feature = "grid")] +mod grid_absolute_column_end; +#[cfg(feature = "grid")] +mod grid_absolute_column_start; +#[cfg(feature = "grid")] +mod grid_absolute_container_bottom_left; +#[cfg(feature = "grid")] +mod grid_absolute_container_bottom_left_margin; +#[cfg(feature = "grid")] +mod grid_absolute_container_left_overrides_right; +#[cfg(feature = "grid")] +mod grid_absolute_container_left_right; +#[cfg(feature = "grid")] +mod grid_absolute_container_left_right_margin; +#[cfg(feature = "grid")] +mod grid_absolute_container_negative_position; +#[cfg(feature = "grid")] +mod grid_absolute_container_negative_position_margin; +#[cfg(feature = "grid")] +mod grid_absolute_container_top_bottom; +#[cfg(feature = "grid")] +mod grid_absolute_container_top_bottom_margin; +#[cfg(feature = "grid")] +mod grid_absolute_container_top_right; +#[cfg(feature = "grid")] +mod grid_absolute_container_top_right_margin; +#[cfg(feature = "grid")] +mod grid_absolute_justify_self_sized_all; +#[cfg(feature = "grid")] +mod grid_absolute_layout_within_border; +#[cfg(feature = "grid")] +mod grid_absolute_layout_within_border_static; +#[cfg(feature = "grid")] +mod grid_absolute_row_end; +#[cfg(feature = "grid")] +mod grid_absolute_row_start; +#[cfg(feature = "grid")] +mod grid_absolute_top_overrides_bottom; +#[cfg(feature = "grid")] +mod grid_absolute_with_padding; +#[cfg(feature = "grid")] +mod grid_absolute_with_padding_and_margin; +#[cfg(feature = "grid")] +mod grid_align_content_center; +#[cfg(feature = "grid")] +mod grid_align_content_end; +#[cfg(feature = "grid")] +mod grid_align_content_end_with_padding_border; +#[cfg(feature = "grid")] +mod grid_align_content_space_around; +#[cfg(feature = "grid")] +mod grid_align_content_space_around_with_padding_border; +#[cfg(feature = "grid")] +mod grid_align_content_space_between; +#[cfg(feature = "grid")] +mod grid_align_content_space_between_with_padding_border; +#[cfg(feature = "grid")] +mod grid_align_content_space_evenly; +#[cfg(feature = "grid")] +mod grid_align_content_space_evenly_with_padding_border; +#[cfg(feature = "grid")] +mod grid_align_content_start; +#[cfg(feature = "grid")] +mod grid_align_content_start_with_padding_border; +#[cfg(feature = "grid")] +mod grid_align_items_baseline; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_child; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_child_margin; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_child_margin_percent; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_child_multiline; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_child_multiline_no_override_on_secondline; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_child_multiline_override; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_child_padding; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_child_top; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_child_top2; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_complex; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_double_nested_child; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_multiline; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_multiline_column; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_multiline_row_and_column; +#[cfg(feature = "grid")] +mod grid_align_items_baseline_nested_column; +#[cfg(feature = "grid")] +mod grid_align_items_sized_center; +#[cfg(feature = "grid")] +mod grid_align_items_sized_end; +#[cfg(feature = "grid")] +mod grid_align_items_sized_start; +#[cfg(feature = "grid")] +mod grid_align_items_sized_stretch; +#[cfg(feature = "grid")] +mod grid_align_self_sized_all; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_absolute_aspect_ratio_overrides_height_of_full_inset; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_absolute_fill_height_from_inset; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_absolute_fill_width_from_inset; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_absolute_height_overrides_inset; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_absolute_width_overrides_inset; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_child_fill_content_height; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_child_fill_content_width; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_fill_child_height; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_fill_child_max_height; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_fill_child_max_width; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_fill_child_min_height; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_fill_child_min_width; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_fill_child_width; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_overriden_by_explicit_sizes; +#[cfg(feature = "grid")] +mod grid_aspect_ratio_overriden_by_explicit_sizes_flex; +#[cfg(feature = "grid")] +mod grid_auto_columns; +#[cfg(feature = "grid")] +mod grid_auto_columns_fixed_width; +#[cfg(feature = "grid")] +mod grid_auto_fill_fixed_size; +#[cfg(feature = "grid")] +mod grid_auto_fill_with_empty_auto_track; +#[cfg(feature = "grid")] +mod grid_auto_fit_with_empty_auto_track; +#[cfg(feature = "grid")] +mod grid_auto_rows; +#[cfg(feature = "grid")] +mod grid_auto_single_item; +#[cfg(feature = "grid")] +mod grid_auto_single_item_fixed_width; +#[cfg(feature = "grid")] +mod grid_auto_single_item_fixed_width_with_definite_width; +#[cfg(feature = "grid")] +mod grid_auto_takes_precedence_over_fr; +#[cfg(feature = "grid")] +mod grid_available_space_greater_than_max_content; +#[cfg(feature = "grid")] +mod grid_available_space_smaller_than_max_content; +#[cfg(feature = "grid")] +mod grid_available_space_smaller_than_min_content; +#[cfg(feature = "grid")] +mod grid_basic; +#[cfg(feature = "grid")] +mod grid_basic_implicit_tracks; +#[cfg(feature = "grid")] +mod grid_basic_with_overflow; +#[cfg(feature = "grid")] +mod grid_basic_with_padding; +#[cfg(feature = "grid")] +mod grid_display_none_fixed_size; +#[cfg(feature = "grid")] +mod grid_fit_content_percent_definite_argument; +#[cfg(feature = "grid")] +mod grid_fit_content_percent_definite_max_content; +#[cfg(feature = "grid")] +mod grid_fit_content_percent_definite_min_content; +#[cfg(feature = "grid")] +mod grid_fit_content_percent_indefinite_argument; +#[cfg(feature = "grid")] +mod grid_fit_content_percent_indefinite_max_content; +#[cfg(feature = "grid")] +mod grid_fit_content_percent_indefinite_max_content_hidden; +#[cfg(feature = "grid")] +mod grid_fit_content_percent_indefinite_min_content; +#[cfg(feature = "grid")] +mod grid_fit_content_percent_indefinite_min_content_hidden; +#[cfg(feature = "grid")] +mod grid_fit_content_points_argument; +#[cfg(feature = "grid")] +mod grid_fit_content_points_max_content; +#[cfg(feature = "grid")] +mod grid_fit_content_points_min_content; +#[cfg(feature = "grid")] +mod grid_fit_content_points_min_content_hidden; +#[cfg(feature = "grid")] +mod grid_fr_fixed_size_no_content_proportions; +#[cfg(feature = "grid")] +mod grid_fr_fixed_size_no_content_proportions_sub_1_sum; +#[cfg(feature = "grid")] +mod grid_fr_fixed_size_single_item; +#[cfg(feature = "grid")] +mod grid_fr_no_sized_items_indefinite; +#[cfg(feature = "grid")] +mod grid_fr_single_item_indefinite; +#[cfg(feature = "grid")] +mod grid_fr_span_2_proportion; +#[cfg(feature = "grid")] +mod grid_fr_span_2_proportion_sub_1_sum; +#[cfg(feature = "grid")] +mod grid_fr_span_2_proportion_with_non_spanned_track; +#[cfg(feature = "grid")] +mod grid_fr_span_2_proportion_zero_sum; +#[cfg(feature = "grid")] +mod grid_fr_span_2_proportion_zero_sum_with_non_spanned_track; +#[cfg(feature = "grid")] +mod grid_gap; +#[cfg(feature = "grid")] +mod grid_hidden; +#[cfg(feature = "grid")] +mod grid_justify_content_center; +#[cfg(feature = "grid")] +mod grid_justify_content_center_with_padding_border; +#[cfg(feature = "grid")] +mod grid_justify_content_end; +#[cfg(feature = "grid")] +mod grid_justify_content_end_with_padding_border; +#[cfg(feature = "grid")] +mod grid_justify_content_space_around; +#[cfg(feature = "grid")] +mod grid_justify_content_space_around_with_padding_border; +#[cfg(feature = "grid")] +mod grid_justify_content_space_between; +#[cfg(feature = "grid")] +mod grid_justify_content_space_between_with_padding_border; +#[cfg(feature = "grid")] +mod grid_justify_content_space_evenly; +#[cfg(feature = "grid")] +mod grid_justify_content_space_evenly_with_padding_border; +#[cfg(feature = "grid")] +mod grid_justify_content_start; +#[cfg(feature = "grid")] +mod grid_justify_content_start_with_padding_border; +#[cfg(feature = "grid")] +mod grid_justify_items_sized_center; +#[cfg(feature = "grid")] +mod grid_justify_items_sized_end; +#[cfg(feature = "grid")] +mod grid_justify_items_sized_start; +#[cfg(feature = "grid")] +mod grid_justify_items_sized_stretch; +#[cfg(feature = "grid")] +mod grid_justify_self_sized_all; +#[cfg(feature = "grid")] +mod grid_margins_auto_margins; +#[cfg(feature = "grid")] +mod grid_margins_auto_margins_override_stretch; +#[cfg(feature = "grid")] +mod grid_margins_fixed_center; +#[cfg(feature = "grid")] +mod grid_margins_fixed_end; +#[cfg(feature = "grid")] +mod grid_margins_fixed_start; +#[cfg(feature = "grid")] +mod grid_margins_fixed_stretch; +#[cfg(feature = "grid")] +mod grid_margins_percent_center; +#[cfg(feature = "grid")] +mod grid_margins_percent_end; +#[cfg(feature = "grid")] +mod grid_margins_percent_start; +#[cfg(feature = "grid")] +mod grid_margins_percent_stretch; +#[cfg(feature = "grid")] +mod grid_max_content_maximum_single_item; +#[cfg(feature = "grid")] +mod grid_max_content_single_item; +#[cfg(feature = "grid")] +mod grid_max_content_single_item_margin_auto; +#[cfg(feature = "grid")] +mod grid_max_content_single_item_margin_fixed; +#[cfg(feature = "grid")] +mod grid_max_content_single_item_margin_percent; +#[cfg(feature = "grid")] +mod grid_max_content_single_item_span_2; +#[cfg(feature = "grid")] +mod grid_max_content_single_item_span_2_gap_fixed; +#[cfg(feature = "grid")] +mod grid_max_content_single_item_span_2_gap_percent_definite; +#[cfg(feature = "grid")] +mod grid_max_content_single_item_span_2_gap_percent_indefinite; +#[cfg(feature = "grid")] +mod grid_max_width_greater_than_max_content; +#[cfg(feature = "grid")] +mod grid_max_width_less_than_max_content_with_min_content; +#[cfg(feature = "grid")] +mod grid_max_width_smaller_than_max_content; +#[cfg(feature = "grid")] +mod grid_max_width_smaller_than_min_content; +#[cfg(feature = "grid")] +mod grid_min_content_flex_column; +#[cfg(feature = "grid")] +mod grid_min_content_flex_row; +#[cfg(feature = "grid")] +mod grid_min_content_flex_single_item; +#[cfg(feature = "grid")] +mod grid_min_content_flex_single_item_margin_auto; +#[cfg(feature = "grid")] +mod grid_min_content_flex_single_item_margin_fixed; +#[cfg(feature = "grid")] +mod grid_min_content_flex_single_item_margin_percent; +#[cfg(feature = "grid")] +mod grid_min_content_maximum_single_item; +#[cfg(feature = "grid")] +mod grid_min_content_single_item; +#[cfg(feature = "grid")] +mod grid_minmax_auto_fixed_10px; +#[cfg(feature = "grid")] +mod grid_minmax_auto_max_content; +#[cfg(feature = "grid")] +mod grid_minmax_auto_min_content; +#[cfg(feature = "grid")] +mod grid_minmax_auto_percent_definite; +#[cfg(feature = "grid")] +mod grid_minmax_auto_percent_indefinite; +#[cfg(feature = "grid")] +mod grid_minmax_column_fixed_width_above_range; +#[cfg(feature = "grid")] +mod grid_minmax_column_fixed_width_below_range; +#[cfg(feature = "grid")] +mod grid_minmax_column_fixed_width_within_range; +#[cfg(feature = "grid")] +mod grid_minmax_column_indefinite; +#[cfg(feature = "grid")] +mod grid_minmax_column_with_auto_fixed; +#[cfg(feature = "grid")] +mod grid_minmax_column_with_fr_fixed; +#[cfg(feature = "grid")] +mod grid_minmax_max_content_1fr; +#[cfg(feature = "grid")] +mod grid_minmax_max_content_auto; +#[cfg(feature = "grid")] +mod grid_minmax_max_content_fixed_10px; +#[cfg(feature = "grid")] +mod grid_minmax_max_content_min_content; +#[cfg(feature = "grid")] +mod grid_minmax_max_content_percent_definite; +#[cfg(feature = "grid")] +mod grid_minmax_max_content_percent_indefinite; +#[cfg(feature = "grid")] +mod grid_minmax_min_content_1fr; +#[cfg(feature = "grid")] +mod grid_minmax_min_content_auto; +#[cfg(feature = "grid")] +mod grid_minmax_min_content_fixed_10px; +#[cfg(feature = "grid")] +mod grid_minmax_min_content_max_content; +#[cfg(feature = "grid")] +mod grid_minmax_min_content_percent_definite; +#[cfg(feature = "grid")] +mod grid_minmax_min_content_percent_indefinite; +#[cfg(feature = "grid")] +mod grid_out_of_order_items; +#[cfg(feature = "grid")] +mod grid_overflow_inline_axis_hidden; +#[cfg(feature = "grid")] +mod grid_overflow_inline_axis_scroll; +#[cfg(feature = "grid")] +mod grid_overflow_inline_axis_visible; +#[cfg(feature = "grid")] +mod grid_overflow_rows; +#[cfg(feature = "grid")] +mod grid_overflow_scrollbars_overriden_by_available_space; +#[cfg(feature = "grid")] +mod grid_overflow_scrollbars_overriden_by_max_size; +#[cfg(feature = "grid")] +mod grid_overflow_scrollbars_overriden_by_size; +#[cfg(feature = "grid")] +mod grid_overflow_scrollbars_take_up_space_both_axis; +#[cfg(feature = "grid")] +mod grid_overflow_scrollbars_take_up_space_x_axis; +#[cfg(feature = "grid")] +mod grid_overflow_scrollbars_take_up_space_y_axis; +#[cfg(feature = "grid")] +mod grid_padding_border_overrides_container_max_size; +#[cfg(feature = "grid")] +mod grid_padding_border_overrides_container_size; +#[cfg(feature = "grid")] +mod grid_padding_border_overrides_max_size; +#[cfg(feature = "grid")] +mod grid_padding_border_overrides_min_size; +#[cfg(feature = "grid")] +mod grid_padding_border_overrides_size; +#[cfg(feature = "grid")] +mod grid_percent_item_inside_stretch_item; +#[cfg(feature = "grid")] +mod grid_percent_items_nested_inside_stretch_alignment; +#[cfg(feature = "grid")] +mod grid_percent_items_nested_moderate; +#[cfg(feature = "grid")] +mod grid_percent_items_nested_with_margin; +#[cfg(feature = "grid")] +mod grid_percent_items_nested_with_padding_margin; +#[cfg(feature = "grid")] +mod grid_percent_items_width_and_margin; +#[cfg(feature = "grid")] +mod grid_percent_items_width_and_padding; +#[cfg(feature = "grid")] +mod grid_percent_tracks_definite_overflow; +#[cfg(feature = "grid")] +mod grid_percent_tracks_definite_underflow; +#[cfg(feature = "grid")] +mod grid_percent_tracks_indefinite_only; +#[cfg(feature = "grid")] +mod grid_percent_tracks_indefinite_with_content_overflow; +#[cfg(feature = "grid")] +mod grid_percent_tracks_indefinite_with_content_underflow; +#[cfg(feature = "grid")] +mod grid_placement_auto_negative; +#[cfg(feature = "grid")] +mod grid_placement_definite_in_secondary_axis_with_fully_definite_negative; +#[cfg(feature = "grid")] +mod grid_relative_all_sides; +#[cfg(feature = "grid")] +mod grid_relayout_vertical_text; +#[cfg(feature = "grid")] +mod grid_repeat_integer; +#[cfg(feature = "grid")] +mod grid_repeat_mixed; +#[cfg(feature = "grid")] +mod grid_size_child_fixed_tracks; +#[cfg(feature = "grid")] +mod grid_span_13_most_non_flex_with_minmax_indefinite; +#[cfg(feature = "grid")] +mod grid_span_13_most_non_flex_with_minmax_indefinite_hidden; +#[cfg(feature = "grid")] +mod grid_span_2_max_content_auto_indefinite; +#[cfg(feature = "grid")] +mod grid_span_2_max_content_auto_indefinite_hidden; +#[cfg(feature = "grid")] +mod grid_span_2_max_content_fit_content_10px_indefinite; +#[cfg(feature = "grid")] +mod grid_span_2_max_content_fit_content_10px_indefinite_hidden; +#[cfg(feature = "grid")] +mod grid_span_2_max_content_fit_content_80px_indefinite; +#[cfg(feature = "grid")] +mod grid_span_2_max_content_fit_content_80px_indefinite_hidden; +#[cfg(feature = "grid")] +mod grid_span_2_max_content_max_content_indefinite; +#[cfg(feature = "grid")] +mod grid_span_2_min_content_auto_indefinite; +#[cfg(feature = "grid")] +mod grid_span_2_min_content_auto_indefinite_hidden; +#[cfg(feature = "grid")] +mod grid_span_2_min_content_fit_content_10px_indefinite; +#[cfg(feature = "grid")] +mod grid_span_2_min_content_fit_content_10px_indefinite_hidden; +#[cfg(feature = "grid")] +mod grid_span_2_min_content_fit_content_30px_indefinite; +#[cfg(feature = "grid")] +mod grid_span_2_min_content_fit_content_30px_indefinite_hidden; +#[cfg(feature = "grid")] +mod grid_span_2_min_content_fit_content_80px_indefinite; +#[cfg(feature = "grid")] +mod grid_span_2_min_content_fit_content_80px_indefinite_hidden; +#[cfg(feature = "grid")] +mod grid_span_2_min_content_max_content_indefinite; +#[cfg(feature = "grid")] +mod grid_span_2_min_content_min_content_indefinite; +#[cfg(feature = "grid")] +mod grid_span_6_all_non_flex_indefinite; +#[cfg(feature = "grid")] +mod grid_span_6_all_non_flex_indefinite_hidden; +#[cfg(feature = "grid")] +mod grid_span_8_all_track_types_indefinite; diff --git a/tests/generated/gridflex_column_integration.rs b/tests/generated/gridflex/gridflex_column_integration.rs similarity index 92% rename from tests/generated/gridflex_column_integration.rs rename to tests/generated/gridflex/gridflex_column_integration.rs index 4ac54cec9..d0ff449b1 100644 --- a/tests/generated/gridflex_column_integration.rs +++ b/tests/generated/gridflex/gridflex_column_integration.rs @@ -8,11 +8,11 @@ fn gridflex_column_integration() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -23,11 +23,11 @@ fn gridflex_column_integration() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -38,11 +38,11 @@ fn gridflex_column_integration() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -53,11 +53,11 @@ fn gridflex_column_integration() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/gridflex_kitchen_sink.rs b/tests/generated/gridflex/gridflex_kitchen_sink.rs similarity index 96% rename from tests/generated/gridflex_kitchen_sink.rs rename to tests/generated/gridflex/gridflex_kitchen_sink.rs index 4abcc185d..ec4bfc347 100644 --- a/tests/generated/gridflex_kitchen_sink.rs +++ b/tests/generated/gridflex/gridflex_kitchen_sink.rs @@ -45,11 +45,11 @@ fn gridflex_kitchen_sink() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -60,11 +60,11 @@ fn gridflex_kitchen_sink() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -75,11 +75,11 @@ fn gridflex_kitchen_sink() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/gridflex_kitchen_sink_minimise.rs b/tests/generated/gridflex/gridflex_kitchen_sink_minimise.rs similarity index 100% rename from tests/generated/gridflex_kitchen_sink_minimise.rs rename to tests/generated/gridflex/gridflex_kitchen_sink_minimise.rs diff --git a/tests/generated/gridflex_kitchen_sink_minimise2.rs b/tests/generated/gridflex/gridflex_kitchen_sink_minimise2.rs similarity index 100% rename from tests/generated/gridflex_kitchen_sink_minimise2.rs rename to tests/generated/gridflex/gridflex_kitchen_sink_minimise2.rs diff --git a/tests/generated/gridflex_kitchen_sink_minimise3.rs b/tests/generated/gridflex/gridflex_kitchen_sink_minimise3.rs similarity index 100% rename from tests/generated/gridflex_kitchen_sink_minimise3.rs rename to tests/generated/gridflex/gridflex_kitchen_sink_minimise3.rs diff --git a/tests/generated/gridflex_row_integration.rs b/tests/generated/gridflex/gridflex_row_integration.rs similarity index 91% rename from tests/generated/gridflex_row_integration.rs rename to tests/generated/gridflex/gridflex_row_integration.rs index 2d0b412f1..9b2a2141d 100644 --- a/tests/generated/gridflex_row_integration.rs +++ b/tests/generated/gridflex/gridflex_row_integration.rs @@ -8,11 +8,11 @@ fn gridflex_row_integration() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -23,11 +23,11 @@ fn gridflex_row_integration() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -38,11 +38,11 @@ fn gridflex_row_integration() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), @@ -53,11 +53,11 @@ fn gridflex_row_integration() { taffy::style::Style { ..Default::default() }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/gridflex/mod.rs b/tests/generated/gridflex/mod.rs new file mode 100644 index 000000000..36db8f53d --- /dev/null +++ b/tests/generated/gridflex/mod.rs @@ -0,0 +1,12 @@ +#[cfg(feature = "grid")] +mod gridflex_column_integration; +#[cfg(feature = "grid")] +mod gridflex_kitchen_sink; +#[cfg(feature = "grid")] +mod gridflex_kitchen_sink_minimise; +#[cfg(feature = "grid")] +mod gridflex_kitchen_sink_minimise2; +#[cfg(feature = "grid")] +mod gridflex_kitchen_sink_minimise3; +#[cfg(feature = "grid")] +mod gridflex_row_integration; diff --git a/tests/generated/leaf_overflow_scrollbars_affect_available_space_x_axis.rs b/tests/generated/leaf/leaf_overflow_scrollbars_affect_available_space_x_axis.rs similarity index 93% rename from tests/generated/leaf_overflow_scrollbars_affect_available_space_x_axis.rs rename to tests/generated/leaf/leaf_overflow_scrollbars_affect_available_space_x_axis.rs index 7c67d130f..b53a8b89d 100644 --- a/tests/generated/leaf_overflow_scrollbars_affect_available_space_x_axis.rs +++ b/tests/generated/leaf/leaf_overflow_scrollbars_affect_available_space_x_axis.rs @@ -19,11 +19,11 @@ fn leaf_overflow_scrollbars_affect_available_space_x_axis() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "H\u{a0}H\u{a0}H\u{a0}H\u{a0}H\u{a0}H\u{a0}H\u{a0}H\u{a0}H\u{a0}H\u{a0}H"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/leaf_overflow_scrollbars_affect_available_space_y_axis.rs b/tests/generated/leaf/leaf_overflow_scrollbars_affect_available_space_y_axis.rs similarity index 93% rename from tests/generated/leaf_overflow_scrollbars_affect_available_space_y_axis.rs rename to tests/generated/leaf/leaf_overflow_scrollbars_affect_available_space_y_axis.rs index d5eadd143..d54ce85da 100644 --- a/tests/generated/leaf_overflow_scrollbars_affect_available_space_y_axis.rs +++ b/tests/generated/leaf/leaf_overflow_scrollbars_affect_available_space_y_axis.rs @@ -19,11 +19,11 @@ fn leaf_overflow_scrollbars_affect_available_space_y_axis() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "H\u{a0}H\u{a0}H\u{a0}H\u{a0}H\u{a0}H\u{a0}H\u{a0}H\u{a0}H\u{a0}H\u{a0}H"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/leaf_overflow_scrollbars_overriden_by_available_space.rs b/tests/generated/leaf/leaf_overflow_scrollbars_overriden_by_available_space.rs similarity index 100% rename from tests/generated/leaf_overflow_scrollbars_overriden_by_available_space.rs rename to tests/generated/leaf/leaf_overflow_scrollbars_overriden_by_available_space.rs diff --git a/tests/generated/leaf_overflow_scrollbars_overriden_by_max_size.rs b/tests/generated/leaf/leaf_overflow_scrollbars_overriden_by_max_size.rs similarity index 100% rename from tests/generated/leaf_overflow_scrollbars_overriden_by_max_size.rs rename to tests/generated/leaf/leaf_overflow_scrollbars_overriden_by_max_size.rs diff --git a/tests/generated/leaf_overflow_scrollbars_overriden_by_size.rs b/tests/generated/leaf/leaf_overflow_scrollbars_overriden_by_size.rs similarity index 100% rename from tests/generated/leaf_overflow_scrollbars_overriden_by_size.rs rename to tests/generated/leaf/leaf_overflow_scrollbars_overriden_by_size.rs diff --git a/tests/generated/leaf_overflow_scrollbars_take_up_space_both_axis.rs b/tests/generated/leaf/leaf_overflow_scrollbars_take_up_space_both_axis.rs similarity index 92% rename from tests/generated/leaf_overflow_scrollbars_take_up_space_both_axis.rs rename to tests/generated/leaf/leaf_overflow_scrollbars_take_up_space_both_axis.rs index fba8b3074..d4ad904a5 100644 --- a/tests/generated/leaf_overflow_scrollbars_take_up_space_both_axis.rs +++ b/tests/generated/leaf/leaf_overflow_scrollbars_take_up_space_both_axis.rs @@ -15,11 +15,11 @@ fn leaf_overflow_scrollbars_take_up_space_both_axis() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/leaf_overflow_scrollbars_take_up_space_x_axis.rs b/tests/generated/leaf/leaf_overflow_scrollbars_take_up_space_x_axis.rs similarity index 92% rename from tests/generated/leaf_overflow_scrollbars_take_up_space_x_axis.rs rename to tests/generated/leaf/leaf_overflow_scrollbars_take_up_space_x_axis.rs index e5a563365..cc980ff83 100644 --- a/tests/generated/leaf_overflow_scrollbars_take_up_space_x_axis.rs +++ b/tests/generated/leaf/leaf_overflow_scrollbars_take_up_space_x_axis.rs @@ -15,11 +15,11 @@ fn leaf_overflow_scrollbars_take_up_space_x_axis() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/leaf_overflow_scrollbars_take_up_space_y_axis.rs b/tests/generated/leaf/leaf_overflow_scrollbars_take_up_space_y_axis.rs similarity index 92% rename from tests/generated/leaf_overflow_scrollbars_take_up_space_y_axis.rs rename to tests/generated/leaf/leaf_overflow_scrollbars_take_up_space_y_axis.rs index d7f00d9cc..9000d74a4 100644 --- a/tests/generated/leaf_overflow_scrollbars_take_up_space_y_axis.rs +++ b/tests/generated/leaf/leaf_overflow_scrollbars_take_up_space_y_axis.rs @@ -15,11 +15,11 @@ fn leaf_overflow_scrollbars_take_up_space_y_axis() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/leaf_padding_border_overrides_max_size.rs b/tests/generated/leaf/leaf_padding_border_overrides_max_size.rs similarity index 100% rename from tests/generated/leaf_padding_border_overrides_max_size.rs rename to tests/generated/leaf/leaf_padding_border_overrides_max_size.rs diff --git a/tests/generated/leaf_padding_border_overrides_min_size.rs b/tests/generated/leaf/leaf_padding_border_overrides_min_size.rs similarity index 100% rename from tests/generated/leaf_padding_border_overrides_min_size.rs rename to tests/generated/leaf/leaf_padding_border_overrides_min_size.rs diff --git a/tests/generated/leaf_padding_border_overrides_size.rs b/tests/generated/leaf/leaf_padding_border_overrides_size.rs similarity index 100% rename from tests/generated/leaf_padding_border_overrides_size.rs rename to tests/generated/leaf/leaf_padding_border_overrides_size.rs diff --git a/tests/generated/leaf_with_content_and_border.rs b/tests/generated/leaf/leaf_with_content_and_border.rs similarity index 93% rename from tests/generated/leaf_with_content_and_border.rs rename to tests/generated/leaf/leaf_with_content_and_border.rs index 87a55e27c..e1bb76c5c 100644 --- a/tests/generated/leaf_with_content_and_border.rs +++ b/tests/generated/leaf/leaf_with_content_and_border.rs @@ -16,11 +16,11 @@ fn leaf_with_content_and_border() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/leaf_with_content_and_padding.rs b/tests/generated/leaf/leaf_with_content_and_padding.rs similarity index 93% rename from tests/generated/leaf_with_content_and_padding.rs rename to tests/generated/leaf/leaf_with_content_and_padding.rs index 7908c32b3..addc54cc9 100644 --- a/tests/generated/leaf_with_content_and_padding.rs +++ b/tests/generated/leaf/leaf_with_content_and_padding.rs @@ -16,11 +16,11 @@ fn leaf_with_content_and_padding() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/leaf_with_content_and_padding_border.rs b/tests/generated/leaf/leaf_with_content_and_padding_border.rs similarity index 94% rename from tests/generated/leaf_with_content_and_padding_border.rs rename to tests/generated/leaf/leaf_with_content_and_padding_border.rs index ff28b11d3..f248b7ba2 100644 --- a/tests/generated/leaf_with_content_and_padding_border.rs +++ b/tests/generated/leaf/leaf_with_content_and_padding_border.rs @@ -22,11 +22,11 @@ fn leaf_with_content_and_padding_border() { }, taffy::tree::MeasureFunc::Raw(|known_dimensions, available_space| { const TEXT: &str = "HHHH"; - super::measure_standard_text( + crate::generated::measure_standard_text( known_dimensions, available_space, TEXT, - super::WritingMode::Horizontal, + crate::generated::WritingMode::Horizontal, None, ) }), diff --git a/tests/generated/leaf/mod.rs b/tests/generated/leaf/mod.rs new file mode 100644 index 000000000..59c25aeb5 --- /dev/null +++ b/tests/generated/leaf/mod.rs @@ -0,0 +1,14 @@ +mod leaf_overflow_scrollbars_affect_available_space_x_axis; +mod leaf_overflow_scrollbars_affect_available_space_y_axis; +mod leaf_overflow_scrollbars_overriden_by_available_space; +mod leaf_overflow_scrollbars_overriden_by_max_size; +mod leaf_overflow_scrollbars_overriden_by_size; +mod leaf_overflow_scrollbars_take_up_space_both_axis; +mod leaf_overflow_scrollbars_take_up_space_x_axis; +mod leaf_overflow_scrollbars_take_up_space_y_axis; +mod leaf_padding_border_overrides_max_size; +mod leaf_padding_border_overrides_min_size; +mod leaf_padding_border_overrides_size; +mod leaf_with_content_and_border; +mod leaf_with_content_and_padding; +mod leaf_with_content_and_padding_border; diff --git a/tests/generated/mod.rs b/tests/generated/mod.rs index 1af992233..a746b2f03 100644 --- a/tests/generated/mod.rs +++ b/tests/generated/mod.rs @@ -1,3 +1,10 @@ +mod block; +mod blockflex; +mod blockgrid; +mod flex; +mod grid; +mod gridflex; +mod leaf; #[allow(dead_code)] #[derive(Debug, Clone, Copy, PartialEq, Eq)] enum WritingMode { @@ -60,1172 +67,3 @@ fn measure_standard_text( WritingMode::Vertical => Size { width: block_size, height: inline_size }, } } -mod absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset; -mod absolute_aspect_ratio_fill_height; -mod absolute_aspect_ratio_fill_height_from_inset; -mod absolute_aspect_ratio_fill_max_height; -mod absolute_aspect_ratio_fill_max_width; -mod absolute_aspect_ratio_fill_min_height; -mod absolute_aspect_ratio_fill_min_width; -mod absolute_aspect_ratio_fill_width; -mod absolute_aspect_ratio_fill_width_from_inset; -mod absolute_aspect_ratio_height_overrides_inset; -mod absolute_aspect_ratio_width_overrides_inset; -mod absolute_child_with_cross_margin; -mod absolute_child_with_main_margin; -mod absolute_child_with_max_height; -mod absolute_child_with_max_height_larger_shrinkable_grandchild; -mod absolute_layout_align_items_and_justify_content_center; -mod absolute_layout_align_items_and_justify_content_center_and_bottom_position; -mod absolute_layout_align_items_and_justify_content_center_and_left_position; -mod absolute_layout_align_items_and_justify_content_center_and_right_position; -mod absolute_layout_align_items_and_justify_content_center_and_top_position; -mod absolute_layout_align_items_and_justify_content_flex_end; -mod absolute_layout_align_items_center; -mod absolute_layout_align_items_center_on_child_only; -mod absolute_layout_child_order; -mod absolute_layout_in_wrap_reverse_column_container; -mod absolute_layout_in_wrap_reverse_column_container_flex_end; -mod absolute_layout_in_wrap_reverse_row_container; -mod absolute_layout_in_wrap_reverse_row_container_flex_end; -mod absolute_layout_justify_content_center; -mod absolute_layout_no_size; -mod absolute_layout_percentage_bottom_based_on_parent_height; -mod absolute_layout_percentage_height; -mod absolute_layout_row_width_height_end_bottom; -mod absolute_layout_start_top_end_bottom; -mod absolute_layout_width_height_end_bottom; -mod absolute_layout_width_height_start_top; -mod absolute_layout_width_height_start_top_end_bottom; -mod absolute_layout_within_border; -mod absolute_margin_bottom_left; -mod absolute_minmax_bottom_right_max; -mod absolute_minmax_bottom_right_min_max; -mod absolute_minmax_bottom_right_min_max_preferred; -mod absolute_minmax_top_left_bottom_right_max; -mod absolute_minmax_top_left_bottom_right_min_max; -mod absolute_padding_border_overrides_max_size; -mod absolute_padding_border_overrides_size; -mod align_baseline; -mod align_baseline_child; -mod align_baseline_child_margin; -mod align_baseline_child_margin_percent; -mod align_baseline_child_multiline; -mod align_baseline_child_multiline_no_override_on_secondline; -mod align_baseline_child_multiline_override; -mod align_baseline_child_padding; -mod align_baseline_child_top; -mod align_baseline_child_top2; -mod align_baseline_column; -mod align_baseline_double_nested_child; -mod align_baseline_multiline; -mod align_baseline_multiline_column; -mod align_baseline_multiline_column2; -mod align_baseline_multiline_row_and_column; -mod align_baseline_nested_child; -mod align_baseline_nested_column; -mod align_center_should_size_based_on_content; -mod align_content_flex_end; -mod align_content_flex_start; -mod align_content_flex_start_with_flex; -mod align_content_flex_start_without_height_on_children; -mod align_content_not_stretch_with_align_items_stretch; -mod align_content_space_around_single_line; -mod align_content_space_around_wrapped; -mod align_content_space_between_single_line; -mod align_content_space_between_wrapped; -mod align_content_space_evenly_single_line; -mod align_content_space_evenly_wrapped; -mod align_content_spacearound; -mod align_content_spacebetween; -mod align_content_stretch; -mod align_content_stretch_column; -mod align_content_stretch_is_not_overriding_align_items; -mod align_content_stretch_row; -mod align_content_stretch_row_with_children; -mod align_content_stretch_row_with_fixed_height; -mod align_content_stretch_row_with_flex; -mod align_content_stretch_row_with_flex_no_shrink; -mod align_content_stretch_row_with_margin; -mod align_content_stretch_row_with_max_height; -mod align_content_stretch_row_with_min_height; -mod align_content_stretch_row_with_padding; -mod align_content_stretch_row_with_single_row; -mod align_flex_start_with_shrinking_children; -mod align_flex_start_with_shrinking_children_with_stretch; -mod align_flex_start_with_stretching_children; -mod align_items_center; -mod align_items_center_child_with_margin_bigger_than_parent; -mod align_items_center_child_without_margin_bigger_than_parent; -mod align_items_center_justify_content_center; -mod align_items_center_min_max_with_padding; -mod align_items_center_with_child_margin; -mod align_items_center_with_child_top; -mod align_items_flex_end; -mod align_items_flex_end_child_with_margin_bigger_than_parent; -mod align_items_flex_end_child_without_margin_bigger_than_parent; -mod align_items_flex_start; -mod align_items_min_max; -mod align_items_stretch; -mod align_items_stretch_min_cross; -mod align_self_baseline; -mod align_self_center; -mod align_self_center_undefined_max_height; -mod align_self_flex_end; -mod align_self_flex_end_override_flex_start; -mod align_self_flex_start; -mod align_stretch_should_size_based_on_parent; -mod android_news_feed; -mod aspect_ratio_flex_column_fill_height; -mod aspect_ratio_flex_column_fill_max_height; -mod aspect_ratio_flex_column_fill_max_width; -mod aspect_ratio_flex_column_fill_min_height; -mod aspect_ratio_flex_column_fill_min_width; -mod aspect_ratio_flex_column_fill_width; -mod aspect_ratio_flex_column_fill_width_flex; -mod aspect_ratio_flex_column_stretch_fill_height; -mod aspect_ratio_flex_column_stretch_fill_max_height; -mod aspect_ratio_flex_column_stretch_fill_max_width; -mod aspect_ratio_flex_column_stretch_fill_width; -mod aspect_ratio_flex_row_fill_height; -mod aspect_ratio_flex_row_fill_max_height; -mod aspect_ratio_flex_row_fill_max_width; -mod aspect_ratio_flex_row_fill_min_height; -mod aspect_ratio_flex_row_fill_min_width; -mod aspect_ratio_flex_row_fill_width; -mod aspect_ratio_flex_row_fill_width_flex; -mod aspect_ratio_flex_row_stretch_fill_height; -mod aspect_ratio_flex_row_stretch_fill_max_height; -mod aspect_ratio_flex_row_stretch_fill_max_width; -mod aspect_ratio_flex_row_stretch_fill_width; -mod bevy_issue_7976_3_level; -mod bevy_issue_7976_4_level; -mod bevy_issue_7976_reduced; -mod bevy_issue_8017; -mod bevy_issue_8017_reduced; -mod bevy_issue_8082; -mod bevy_issue_8082_percent; -mod bevy_issue_9530; -mod bevy_issue_9530_reduced; -mod bevy_issue_9530_reduced2; -mod bevy_issue_9530_reduced3; -mod bevy_issue_9530_reduced4; -mod block_absolute_aspect_ratio_aspect_ratio_overrides_height_of_full_inset; -mod block_absolute_aspect_ratio_fill_height; -mod block_absolute_aspect_ratio_fill_height_from_inset; -mod block_absolute_aspect_ratio_fill_max_height; -mod block_absolute_aspect_ratio_fill_max_width; -mod block_absolute_aspect_ratio_fill_min_height; -mod block_absolute_aspect_ratio_fill_min_width; -mod block_absolute_aspect_ratio_fill_width; -mod block_absolute_aspect_ratio_fill_width_from_inset; -mod block_absolute_aspect_ratio_height_overrides_inset; -mod block_absolute_aspect_ratio_width_overrides_inset; -mod block_absolute_child_with_margin_x; -mod block_absolute_child_with_margin_y; -mod block_absolute_child_with_max_height; -mod block_absolute_layout_child_order; -mod block_absolute_layout_no_size; -mod block_absolute_layout_percentage_bottom_based_on_parent_height; -mod block_absolute_layout_percentage_height; -mod block_absolute_layout_row_width_height_end_bottom; -mod block_absolute_layout_start_top_end_bottom; -mod block_absolute_layout_width_height_end_bottom; -mod block_absolute_layout_width_height_start_top; -mod block_absolute_layout_width_height_start_top_end_bottom; -mod block_absolute_layout_within_border; -mod block_absolute_margin_auto_bottom_and_top_with_inset; -mod block_absolute_margin_auto_bottom_and_top_without_inset; -mod block_absolute_margin_auto_bottom_with_inset; -mod block_absolute_margin_auto_bottom_without_inset; -mod block_absolute_margin_auto_left_and_right_with_inset; -mod block_absolute_margin_auto_left_and_right_without_inset; -mod block_absolute_margin_auto_left_child_bigger_than_parent_with_inset; -mod block_absolute_margin_auto_left_child_bigger_than_parent_without_inset; -mod block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_with_inset; -mod block_absolute_margin_auto_left_fix_right_child_bigger_than_parent_without_inset; -mod block_absolute_margin_auto_left_right_child_bigger_than_parent_with_inset; -mod block_absolute_margin_auto_left_right_child_bigger_than_parent_without_inset; -mod block_absolute_margin_auto_left_with_inset; -mod block_absolute_margin_auto_left_without_inset; -mod block_absolute_margin_auto_mutiple_children_with_inset; -mod block_absolute_margin_auto_mutiple_children_without_inset; -mod block_absolute_margin_auto_right_with_inset; -mod block_absolute_margin_auto_right_without_inset; -mod block_absolute_margin_auto_top_with_inset; -mod block_absolute_margin_auto_top_without_inset; -mod block_absolute_margin_bottom_left_with_inset; -mod block_absolute_margin_bottom_left_without_inset; -mod block_absolute_minmax_bottom_right_max; -mod block_absolute_minmax_bottom_right_min_max; -mod block_absolute_minmax_bottom_right_min_max_preferred; -mod block_absolute_minmax_top_left_bottom_right_max; -mod block_absolute_minmax_top_left_bottom_right_min_max; -mod block_absolute_no_styles; -mod block_absolute_padding_border_overrides_max_size; -mod block_absolute_padding_border_overrides_size; -mod block_align_baseline_child; -mod block_align_baseline_child_margin; -mod block_align_baseline_child_margin_percent; -mod block_align_baseline_child_padding; -mod block_align_baseline_child_top; -mod block_align_baseline_child_top2; -mod block_align_baseline_double_nested_child; -mod block_aspect_ratio_fill_height; -mod block_aspect_ratio_fill_max_height; -mod block_aspect_ratio_fill_max_width; -mod block_aspect_ratio_fill_min_height; -mod block_aspect_ratio_fill_min_width; -mod block_aspect_ratio_fill_width; -mod block_basic; -mod block_border_fixed_size; -mod block_border_intrinsic_size; -mod block_border_percentage_fixed_size; -mod block_border_percentage_intrinsic_size; -mod block_display_none; -mod block_display_none_with_child; -mod block_display_none_with_inset; -mod block_display_none_with_margin; -mod block_display_none_with_position_absolute; -mod block_inset_fixed; -mod block_inset_percentage; -mod block_intrinsic_width; -mod block_margin_auto_bottom; -mod block_margin_auto_bottom_and_top; -mod block_margin_auto_left; -mod block_margin_auto_left_and_right; -mod block_margin_auto_left_child_bigger_than_parent; -mod block_margin_auto_left_fix_right_child_bigger_than_parent; -mod block_margin_auto_left_right_child_bigger_than_parent; -mod block_margin_auto_mutiple_children; -mod block_margin_auto_right; -mod block_margin_auto_top; -mod block_margin_x_fixed_auto_bottom; -mod block_margin_x_fixed_auto_left; -mod block_margin_x_fixed_auto_left_and_right; -mod block_margin_x_fixed_auto_right; -mod block_margin_x_fixed_auto_top; -mod block_margin_x_fixed_size_negative; -mod block_margin_x_fixed_size_positive; -mod block_margin_x_intrinsic_size_negative; -mod block_margin_x_intrinsic_size_positive; -mod block_margin_x_percentage_fixed_size_negative; -mod block_margin_x_percentage_fixed_size_positive; -mod block_margin_x_percentage_intrinsic_size_other_negative; -mod block_margin_x_percentage_intrinsic_size_other_positive; -mod block_margin_x_percentage_intrinsic_size_self_negative; -mod block_margin_x_percentage_intrinsic_size_self_positive; -mod block_margin_y_collapse_complex; -mod block_margin_y_collapse_through_blocked_by_aspect_ratio; -mod block_margin_y_collapse_through_blocked_by_border_bottom; -mod block_margin_y_collapse_through_blocked_by_border_top; -mod block_margin_y_collapse_through_blocked_by_height; -mod block_margin_y_collapse_through_blocked_by_line_box; -mod block_margin_y_collapse_through_blocked_by_line_box_with_height_zero; -mod block_margin_y_collapse_through_blocked_by_line_box_with_max_height_zero; -mod block_margin_y_collapse_through_blocked_by_min_height; -mod block_margin_y_collapse_through_blocked_by_overflow_x_hidden; -mod block_margin_y_collapse_through_blocked_by_overflow_x_scroll; -mod block_margin_y_collapse_through_blocked_by_overflow_y_hidden; -mod block_margin_y_collapse_through_blocked_by_overflow_y_scroll; -mod block_margin_y_collapse_through_blocked_by_padding_bottom; -mod block_margin_y_collapse_through_blocked_by_padding_top; -mod block_margin_y_collapse_through_negative; -mod block_margin_y_collapse_through_positive; -mod block_margin_y_collapse_through_positive_and_negative; -mod block_margin_y_collapse_through_with_absolute_child; -mod block_margin_y_first_child_collapse_blocked_by_border_top; -mod block_margin_y_first_child_collapse_blocked_by_overflow_x_hidden; -mod block_margin_y_first_child_collapse_blocked_by_overflow_x_scroll; -mod block_margin_y_first_child_collapse_blocked_by_overflow_y_hidden; -mod block_margin_y_first_child_collapse_blocked_by_overflow_y_scroll; -mod block_margin_y_first_child_collapse_blocked_by_padding_top; -mod block_margin_y_first_child_collapse_negative_equal; -mod block_margin_y_first_child_collapse_negative_parent_larger; -mod block_margin_y_first_child_collapse_negative_parent_smaller; -mod block_margin_y_first_child_collapse_not_blocked_by_border_bottom; -mod block_margin_y_first_child_collapse_not_blocked_by_padding_bottom; -mod block_margin_y_first_child_collapse_positive_and_negative; -mod block_margin_y_first_child_collapse_positive_equal; -mod block_margin_y_first_child_collapse_positive_parent_larger; -mod block_margin_y_first_child_collapse_positive_parent_smaller; -mod block_margin_y_first_granchild_collapse_positive_and_negative; -mod block_margin_y_first_granchild_collapse_positive_equal; -mod block_margin_y_last_child_collapse_blocked_by_border_bottom; -mod block_margin_y_last_child_collapse_blocked_by_overflow_x_hidden; -mod block_margin_y_last_child_collapse_blocked_by_overflow_x_scroll; -mod block_margin_y_last_child_collapse_blocked_by_overflow_y_hidden; -mod block_margin_y_last_child_collapse_blocked_by_overflow_y_scroll; -mod block_margin_y_last_child_collapse_blocked_by_padding_bottom; -mod block_margin_y_last_child_collapse_negative_equal; -mod block_margin_y_last_child_collapse_negative_parent_larger; -mod block_margin_y_last_child_collapse_negative_parent_smaller; -mod block_margin_y_last_child_collapse_not_blocked_by_border_top; -mod block_margin_y_last_child_collapse_not_blocked_by_padding_top; -mod block_margin_y_last_child_collapse_positive_and_negative; -mod block_margin_y_last_child_collapse_positive_equal; -mod block_margin_y_last_child_collapse_positive_parent_larger; -mod block_margin_y_last_child_collapse_positive_parent_smaller; -mod block_margin_y_last_granchild_collapse_positive_equal; -mod block_margin_y_sibling_collapse_negative; -mod block_margin_y_sibling_collapse_negative_percentage; -mod block_margin_y_sibling_collapse_positive; -mod block_margin_y_sibling_collapse_positive_and_negative; -mod block_margin_y_sibling_collapse_positive_and_negative_percentage; -mod block_margin_y_sibling_collapse_positive_percentage; -mod block_margin_y_simple_negative; -mod block_margin_y_simple_negative_percentage_other; -mod block_margin_y_simple_negative_percentage_self; -mod block_margin_y_simple_positive; -mod block_margin_y_simple_positive_percentage_other; -mod block_margin_y_simple_positive_percentage_self; -mod block_margin_y_total_collapse; -mod block_margin_y_total_collapse_complex; -mod block_overflow_scrollbars_overriden_by_available_space; -mod block_overflow_scrollbars_overriden_by_max_size; -mod block_overflow_scrollbars_overriden_by_size; -mod block_overflow_scrollbars_take_up_space_both_axis; -mod block_overflow_scrollbars_take_up_space_cross_axis; -mod block_overflow_scrollbars_take_up_space_main_axis; -mod block_padding_border_fixed_size; -mod block_padding_border_intrinsic_size; -mod block_padding_border_overrides_max_size; -mod block_padding_border_overrides_min_size; -mod block_padding_border_overrides_size; -mod block_padding_border_percentage_fixed_size; -mod block_padding_border_percentage_intrinsic_size; -mod block_padding_fixed_size; -mod block_padding_intrinsic_size; -mod block_padding_percentage_fixed_size; -mod block_padding_percentage_intrinsic_size; -mod blockflex_block_in_flex_column; -mod blockflex_block_in_flex_row; -mod blockflex_flex_in_block; -mod blockflex_margin_y_collapse_through_blocked_by_flex; -mod blockflex_margin_y_first_child_collapse_blocked_by_flex; -mod blockflex_margin_y_last_child_collapse_blocked_by_flex; -mod blockflex_overflow_hidden; -mod blockgrid_block_in_grid_auto; -mod blockgrid_block_in_grid_fixed_fit_content_larger; -mod blockgrid_block_in_grid_fixed_fit_content_middle; -mod blockgrid_block_in_grid_fixed_fit_content_smaller; -mod blockgrid_block_in_grid_fixed_larger; -mod blockgrid_block_in_grid_fixed_middle; -mod blockgrid_block_in_grid_fixed_smaller; -mod blockgrid_block_in_grid_fr; -mod blockgrid_block_in_grid_max_content; -mod blockgrid_block_in_grid_min_content; -mod blockgrid_grid_in_block; -mod blockgrid_margin_y_collapse_through_blocked_by_grid; -mod blockgrid_margin_y_first_child_collapse_blocked_by_grid; -mod blockgrid_margin_y_last_child_collapse_blocked_by_grid; -mod border_center_child; -mod border_container_match_child; -mod border_flex_child; -mod border_no_child; -mod border_no_size; -mod border_stretch_child; -mod child_min_max_width_flexing; -mod child_with_padding_align_end; -mod container_with_unsized_child; -mod display_none; -mod display_none_absolute_child; -mod display_none_fixed_size; -mod display_none_only_node; -mod display_none_with_child; -mod display_none_with_margin; -mod display_none_with_position; -mod display_none_with_position_absolute; -mod do_not_clamp_height_of_absolute_node_to_height_of_its_overflow_hidden_parent; -mod flex_basis_and_main_dimen_set_when_flexing; -mod flex_basis_flex_grow_column; -mod flex_basis_flex_grow_row; -mod flex_basis_flex_shrink_column; -mod flex_basis_flex_shrink_row; -mod flex_basis_larger_than_content_column; -mod flex_basis_larger_than_content_row; -mod flex_basis_overrides_main_size; -mod flex_basis_slightly_smaller_then_content_with_flex_grow_large_size; -mod flex_basis_smaller_than_content_column; -mod flex_basis_smaller_than_content_row; -mod flex_basis_smaller_than_main_dimen_column; -mod flex_basis_smaller_than_main_dimen_row; -mod flex_basis_smaller_then_content_with_flex_grow_large_size; -mod flex_basis_smaller_then_content_with_flex_grow_small_size; -mod flex_basis_smaller_then_content_with_flex_grow_unconstraint_size; -mod flex_basis_smaller_then_content_with_flex_grow_very_large_size; -mod flex_basis_unconstraint_column; -mod flex_basis_unconstraint_row; -mod flex_basis_zero_undefined_main_size; -mod flex_column_relative_all_sides; -mod flex_direction_column; -mod flex_direction_column_no_height; -mod flex_direction_column_reverse; -mod flex_direction_column_reverse_no_height; -mod flex_direction_row; -mod flex_direction_row_no_width; -mod flex_direction_row_reverse; -mod flex_grow_child; -mod flex_grow_flex_basis_percent_min_max; -mod flex_grow_height_maximized; -mod flex_grow_in_at_most_container; -mod flex_grow_less_than_factor_one; -mod flex_grow_root_minimized; -mod flex_grow_shrink_at_most; -mod flex_grow_to_min; -mod flex_grow_within_constrained_max_column; -mod flex_grow_within_constrained_max_row; -mod flex_grow_within_constrained_max_width; -mod flex_grow_within_constrained_min_column; -mod flex_grow_within_constrained_min_max_column; -mod flex_grow_within_constrained_min_row; -mod flex_grow_within_max_width; -mod flex_root_ignored; -mod flex_row_relative_all_sides; -mod flex_shrink_by_outer_margin_with_max_size; -mod flex_shrink_flex_grow_child_flex_shrink_other_child; -mod flex_shrink_flex_grow_row; -mod flex_shrink_to_zero; -mod flex_wrap_align_stretch_fits_one_row; -mod flex_wrap_children_with_min_main_overriding_flex_basis; -mod flex_wrap_wrap_to_child_height; -mod gap_column_gap_child_margins; -mod gap_column_gap_determines_parent_width; -mod gap_column_gap_flexible; -mod gap_column_gap_flexible_undefined_parent; -mod gap_column_gap_inflexible; -mod gap_column_gap_inflexible_undefined_parent; -mod gap_column_gap_justify_center; -mod gap_column_gap_justify_flex_end; -mod gap_column_gap_justify_flex_start; -mod gap_column_gap_justify_space_around; -mod gap_column_gap_justify_space_between; -mod gap_column_gap_justify_space_evenly; -mod gap_column_gap_mixed_flexible; -mod gap_column_gap_percentage_cyclic_partially_shrinkable; -mod gap_column_gap_percentage_cyclic_shrinkable; -mod gap_column_gap_percentage_cyclic_unshrinkable; -mod gap_column_gap_percentage_flexible; -mod gap_column_gap_percentage_flexible_with_padding; -mod gap_column_gap_percentage_inflexible; -mod gap_column_gap_row_gap_wrapping; -mod gap_column_gap_wrap_align_center; -mod gap_column_gap_wrap_align_flex_end; -mod gap_column_gap_wrap_align_flex_start; -mod gap_column_gap_wrap_align_space_around; -mod gap_column_gap_wrap_align_space_between; -mod gap_column_gap_wrap_align_stretch; -mod gap_column_row_gap_wrapping; -mod gap_row_gap_align_items_end; -mod gap_row_gap_align_items_stretch; -mod gap_row_gap_column_child_margins; -mod gap_row_gap_determines_parent_height; -mod gap_row_gap_percentage_wrapping; -mod gap_row_gap_row_wrap_child_margins; -#[cfg(feature = "grid")] -mod grid_absolute_align_self_sized_all; -#[cfg(feature = "grid")] -mod grid_absolute_column_end; -#[cfg(feature = "grid")] -mod grid_absolute_column_start; -#[cfg(feature = "grid")] -mod grid_absolute_container_bottom_left; -#[cfg(feature = "grid")] -mod grid_absolute_container_bottom_left_margin; -#[cfg(feature = "grid")] -mod grid_absolute_container_left_overrides_right; -#[cfg(feature = "grid")] -mod grid_absolute_container_left_right; -#[cfg(feature = "grid")] -mod grid_absolute_container_left_right_margin; -#[cfg(feature = "grid")] -mod grid_absolute_container_negative_position; -#[cfg(feature = "grid")] -mod grid_absolute_container_negative_position_margin; -#[cfg(feature = "grid")] -mod grid_absolute_container_top_bottom; -#[cfg(feature = "grid")] -mod grid_absolute_container_top_bottom_margin; -#[cfg(feature = "grid")] -mod grid_absolute_container_top_right; -#[cfg(feature = "grid")] -mod grid_absolute_container_top_right_margin; -#[cfg(feature = "grid")] -mod grid_absolute_justify_self_sized_all; -#[cfg(feature = "grid")] -mod grid_absolute_layout_within_border; -#[cfg(feature = "grid")] -mod grid_absolute_layout_within_border_static; -#[cfg(feature = "grid")] -mod grid_absolute_row_end; -#[cfg(feature = "grid")] -mod grid_absolute_row_start; -#[cfg(feature = "grid")] -mod grid_absolute_top_overrides_bottom; -#[cfg(feature = "grid")] -mod grid_absolute_with_padding; -#[cfg(feature = "grid")] -mod grid_absolute_with_padding_and_margin; -#[cfg(feature = "grid")] -mod grid_align_content_center; -#[cfg(feature = "grid")] -mod grid_align_content_end; -#[cfg(feature = "grid")] -mod grid_align_content_end_with_padding_border; -#[cfg(feature = "grid")] -mod grid_align_content_space_around; -#[cfg(feature = "grid")] -mod grid_align_content_space_around_with_padding_border; -#[cfg(feature = "grid")] -mod grid_align_content_space_between; -#[cfg(feature = "grid")] -mod grid_align_content_space_between_with_padding_border; -#[cfg(feature = "grid")] -mod grid_align_content_space_evenly; -#[cfg(feature = "grid")] -mod grid_align_content_space_evenly_with_padding_border; -#[cfg(feature = "grid")] -mod grid_align_content_start; -#[cfg(feature = "grid")] -mod grid_align_content_start_with_padding_border; -#[cfg(feature = "grid")] -mod grid_align_items_baseline; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_child; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_child_margin; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_child_margin_percent; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_child_multiline; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_child_multiline_no_override_on_secondline; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_child_multiline_override; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_child_padding; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_child_top; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_child_top2; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_complex; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_double_nested_child; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_multiline; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_multiline_column; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_multiline_row_and_column; -#[cfg(feature = "grid")] -mod grid_align_items_baseline_nested_column; -#[cfg(feature = "grid")] -mod grid_align_items_sized_center; -#[cfg(feature = "grid")] -mod grid_align_items_sized_end; -#[cfg(feature = "grid")] -mod grid_align_items_sized_start; -#[cfg(feature = "grid")] -mod grid_align_items_sized_stretch; -#[cfg(feature = "grid")] -mod grid_align_self_sized_all; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_absolute_aspect_ratio_overrides_height_of_full_inset; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_absolute_fill_height_from_inset; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_absolute_fill_width_from_inset; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_absolute_height_overrides_inset; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_absolute_width_overrides_inset; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_child_fill_content_height; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_child_fill_content_width; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_fill_child_height; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_fill_child_max_height; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_fill_child_max_width; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_fill_child_min_height; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_fill_child_min_width; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_fill_child_width; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_overriden_by_explicit_sizes; -#[cfg(feature = "grid")] -mod grid_aspect_ratio_overriden_by_explicit_sizes_flex; -#[cfg(feature = "grid")] -mod grid_auto_columns; -#[cfg(feature = "grid")] -mod grid_auto_columns_fixed_width; -#[cfg(feature = "grid")] -mod grid_auto_fill_fixed_size; -#[cfg(feature = "grid")] -mod grid_auto_fill_with_empty_auto_track; -#[cfg(feature = "grid")] -mod grid_auto_fit_with_empty_auto_track; -#[cfg(feature = "grid")] -mod grid_auto_rows; -#[cfg(feature = "grid")] -mod grid_auto_single_item; -#[cfg(feature = "grid")] -mod grid_auto_single_item_fixed_width; -#[cfg(feature = "grid")] -mod grid_auto_single_item_fixed_width_with_definite_width; -#[cfg(feature = "grid")] -mod grid_auto_takes_precedence_over_fr; -#[cfg(feature = "grid")] -mod grid_available_space_greater_than_max_content; -#[cfg(feature = "grid")] -mod grid_available_space_smaller_than_max_content; -#[cfg(feature = "grid")] -mod grid_available_space_smaller_than_min_content; -#[cfg(feature = "grid")] -mod grid_basic; -#[cfg(feature = "grid")] -mod grid_basic_implicit_tracks; -#[cfg(feature = "grid")] -mod grid_basic_with_overflow; -#[cfg(feature = "grid")] -mod grid_basic_with_padding; -#[cfg(feature = "grid")] -mod grid_display_none_fixed_size; -#[cfg(feature = "grid")] -mod grid_fit_content_percent_definite_argument; -#[cfg(feature = "grid")] -mod grid_fit_content_percent_definite_max_content; -#[cfg(feature = "grid")] -mod grid_fit_content_percent_definite_min_content; -#[cfg(feature = "grid")] -mod grid_fit_content_percent_indefinite_argument; -#[cfg(feature = "grid")] -mod grid_fit_content_percent_indefinite_max_content; -#[cfg(feature = "grid")] -mod grid_fit_content_percent_indefinite_max_content_hidden; -#[cfg(feature = "grid")] -mod grid_fit_content_percent_indefinite_min_content; -#[cfg(feature = "grid")] -mod grid_fit_content_percent_indefinite_min_content_hidden; -#[cfg(feature = "grid")] -mod grid_fit_content_points_argument; -#[cfg(feature = "grid")] -mod grid_fit_content_points_max_content; -#[cfg(feature = "grid")] -mod grid_fit_content_points_min_content; -#[cfg(feature = "grid")] -mod grid_fit_content_points_min_content_hidden; -#[cfg(feature = "grid")] -mod grid_fr_fixed_size_no_content_proportions; -#[cfg(feature = "grid")] -mod grid_fr_fixed_size_no_content_proportions_sub_1_sum; -#[cfg(feature = "grid")] -mod grid_fr_fixed_size_single_item; -#[cfg(feature = "grid")] -mod grid_fr_no_sized_items_indefinite; -#[cfg(feature = "grid")] -mod grid_fr_single_item_indefinite; -#[cfg(feature = "grid")] -mod grid_fr_span_2_proportion; -#[cfg(feature = "grid")] -mod grid_fr_span_2_proportion_sub_1_sum; -#[cfg(feature = "grid")] -mod grid_fr_span_2_proportion_with_non_spanned_track; -#[cfg(feature = "grid")] -mod grid_fr_span_2_proportion_zero_sum; -#[cfg(feature = "grid")] -mod grid_fr_span_2_proportion_zero_sum_with_non_spanned_track; -#[cfg(feature = "grid")] -mod grid_gap; -#[cfg(feature = "grid")] -mod grid_hidden; -#[cfg(feature = "grid")] -mod grid_justify_content_center; -#[cfg(feature = "grid")] -mod grid_justify_content_center_with_padding_border; -#[cfg(feature = "grid")] -mod grid_justify_content_end; -#[cfg(feature = "grid")] -mod grid_justify_content_end_with_padding_border; -#[cfg(feature = "grid")] -mod grid_justify_content_space_around; -#[cfg(feature = "grid")] -mod grid_justify_content_space_around_with_padding_border; -#[cfg(feature = "grid")] -mod grid_justify_content_space_between; -#[cfg(feature = "grid")] -mod grid_justify_content_space_between_with_padding_border; -#[cfg(feature = "grid")] -mod grid_justify_content_space_evenly; -#[cfg(feature = "grid")] -mod grid_justify_content_space_evenly_with_padding_border; -#[cfg(feature = "grid")] -mod grid_justify_content_start; -#[cfg(feature = "grid")] -mod grid_justify_content_start_with_padding_border; -#[cfg(feature = "grid")] -mod grid_justify_items_sized_center; -#[cfg(feature = "grid")] -mod grid_justify_items_sized_end; -#[cfg(feature = "grid")] -mod grid_justify_items_sized_start; -#[cfg(feature = "grid")] -mod grid_justify_items_sized_stretch; -#[cfg(feature = "grid")] -mod grid_justify_self_sized_all; -#[cfg(feature = "grid")] -mod grid_margins_auto_margins; -#[cfg(feature = "grid")] -mod grid_margins_auto_margins_override_stretch; -#[cfg(feature = "grid")] -mod grid_margins_fixed_center; -#[cfg(feature = "grid")] -mod grid_margins_fixed_end; -#[cfg(feature = "grid")] -mod grid_margins_fixed_start; -#[cfg(feature = "grid")] -mod grid_margins_fixed_stretch; -#[cfg(feature = "grid")] -mod grid_margins_percent_center; -#[cfg(feature = "grid")] -mod grid_margins_percent_end; -#[cfg(feature = "grid")] -mod grid_margins_percent_start; -#[cfg(feature = "grid")] -mod grid_margins_percent_stretch; -#[cfg(feature = "grid")] -mod grid_max_content_maximum_single_item; -#[cfg(feature = "grid")] -mod grid_max_content_single_item; -#[cfg(feature = "grid")] -mod grid_max_content_single_item_margin_auto; -#[cfg(feature = "grid")] -mod grid_max_content_single_item_margin_fixed; -#[cfg(feature = "grid")] -mod grid_max_content_single_item_margin_percent; -#[cfg(feature = "grid")] -mod grid_max_content_single_item_span_2; -#[cfg(feature = "grid")] -mod grid_max_content_single_item_span_2_gap_fixed; -#[cfg(feature = "grid")] -mod grid_max_content_single_item_span_2_gap_percent_definite; -#[cfg(feature = "grid")] -mod grid_max_content_single_item_span_2_gap_percent_indefinite; -#[cfg(feature = "grid")] -mod grid_max_width_greater_than_max_content; -#[cfg(feature = "grid")] -mod grid_max_width_less_than_max_content_with_min_content; -#[cfg(feature = "grid")] -mod grid_max_width_smaller_than_max_content; -#[cfg(feature = "grid")] -mod grid_max_width_smaller_than_min_content; -#[cfg(feature = "grid")] -mod grid_min_content_flex_column; -#[cfg(feature = "grid")] -mod grid_min_content_flex_row; -#[cfg(feature = "grid")] -mod grid_min_content_flex_single_item; -#[cfg(feature = "grid")] -mod grid_min_content_flex_single_item_margin_auto; -#[cfg(feature = "grid")] -mod grid_min_content_flex_single_item_margin_fixed; -#[cfg(feature = "grid")] -mod grid_min_content_flex_single_item_margin_percent; -#[cfg(feature = "grid")] -mod grid_min_content_maximum_single_item; -#[cfg(feature = "grid")] -mod grid_min_content_single_item; -#[cfg(feature = "grid")] -mod grid_minmax_auto_fixed_10px; -#[cfg(feature = "grid")] -mod grid_minmax_auto_max_content; -#[cfg(feature = "grid")] -mod grid_minmax_auto_min_content; -#[cfg(feature = "grid")] -mod grid_minmax_auto_percent_definite; -#[cfg(feature = "grid")] -mod grid_minmax_auto_percent_indefinite; -#[cfg(feature = "grid")] -mod grid_minmax_column_fixed_width_above_range; -#[cfg(feature = "grid")] -mod grid_minmax_column_fixed_width_below_range; -#[cfg(feature = "grid")] -mod grid_minmax_column_fixed_width_within_range; -#[cfg(feature = "grid")] -mod grid_minmax_column_indefinite; -#[cfg(feature = "grid")] -mod grid_minmax_column_with_auto_fixed; -#[cfg(feature = "grid")] -mod grid_minmax_column_with_fr_fixed; -#[cfg(feature = "grid")] -mod grid_minmax_max_content_1fr; -#[cfg(feature = "grid")] -mod grid_minmax_max_content_auto; -#[cfg(feature = "grid")] -mod grid_minmax_max_content_fixed_10px; -#[cfg(feature = "grid")] -mod grid_minmax_max_content_min_content; -#[cfg(feature = "grid")] -mod grid_minmax_max_content_percent_definite; -#[cfg(feature = "grid")] -mod grid_minmax_max_content_percent_indefinite; -#[cfg(feature = "grid")] -mod grid_minmax_min_content_1fr; -#[cfg(feature = "grid")] -mod grid_minmax_min_content_auto; -#[cfg(feature = "grid")] -mod grid_minmax_min_content_fixed_10px; -#[cfg(feature = "grid")] -mod grid_minmax_min_content_max_content; -#[cfg(feature = "grid")] -mod grid_minmax_min_content_percent_definite; -#[cfg(feature = "grid")] -mod grid_minmax_min_content_percent_indefinite; -#[cfg(feature = "grid")] -mod grid_out_of_order_items; -#[cfg(feature = "grid")] -mod grid_overflow_inline_axis_hidden; -#[cfg(feature = "grid")] -mod grid_overflow_inline_axis_scroll; -#[cfg(feature = "grid")] -mod grid_overflow_inline_axis_visible; -#[cfg(feature = "grid")] -mod grid_overflow_rows; -#[cfg(feature = "grid")] -mod grid_overflow_scrollbars_overriden_by_available_space; -#[cfg(feature = "grid")] -mod grid_overflow_scrollbars_overriden_by_max_size; -#[cfg(feature = "grid")] -mod grid_overflow_scrollbars_overriden_by_size; -#[cfg(feature = "grid")] -mod grid_overflow_scrollbars_take_up_space_both_axis; -#[cfg(feature = "grid")] -mod grid_overflow_scrollbars_take_up_space_x_axis; -#[cfg(feature = "grid")] -mod grid_overflow_scrollbars_take_up_space_y_axis; -#[cfg(feature = "grid")] -mod grid_padding_border_overrides_container_max_size; -#[cfg(feature = "grid")] -mod grid_padding_border_overrides_container_size; -#[cfg(feature = "grid")] -mod grid_padding_border_overrides_max_size; -#[cfg(feature = "grid")] -mod grid_padding_border_overrides_min_size; -#[cfg(feature = "grid")] -mod grid_padding_border_overrides_size; -#[cfg(feature = "grid")] -mod grid_percent_item_inside_stretch_item; -#[cfg(feature = "grid")] -mod grid_percent_items_nested_inside_stretch_alignment; -#[cfg(feature = "grid")] -mod grid_percent_items_nested_moderate; -#[cfg(feature = "grid")] -mod grid_percent_items_nested_with_margin; -#[cfg(feature = "grid")] -mod grid_percent_items_nested_with_padding_margin; -#[cfg(feature = "grid")] -mod grid_percent_items_width_and_margin; -#[cfg(feature = "grid")] -mod grid_percent_items_width_and_padding; -#[cfg(feature = "grid")] -mod grid_percent_tracks_definite_overflow; -#[cfg(feature = "grid")] -mod grid_percent_tracks_definite_underflow; -#[cfg(feature = "grid")] -mod grid_percent_tracks_indefinite_only; -#[cfg(feature = "grid")] -mod grid_percent_tracks_indefinite_with_content_overflow; -#[cfg(feature = "grid")] -mod grid_percent_tracks_indefinite_with_content_underflow; -#[cfg(feature = "grid")] -mod grid_placement_auto_negative; -#[cfg(feature = "grid")] -mod grid_placement_definite_in_secondary_axis_with_fully_definite_negative; -#[cfg(feature = "grid")] -mod grid_relative_all_sides; -#[cfg(feature = "grid")] -mod grid_relayout_vertical_text; -#[cfg(feature = "grid")] -mod grid_repeat_integer; -#[cfg(feature = "grid")] -mod grid_repeat_mixed; -#[cfg(feature = "grid")] -mod grid_size_child_fixed_tracks; -#[cfg(feature = "grid")] -mod grid_span_13_most_non_flex_with_minmax_indefinite; -#[cfg(feature = "grid")] -mod grid_span_13_most_non_flex_with_minmax_indefinite_hidden; -#[cfg(feature = "grid")] -mod grid_span_2_max_content_auto_indefinite; -#[cfg(feature = "grid")] -mod grid_span_2_max_content_auto_indefinite_hidden; -#[cfg(feature = "grid")] -mod grid_span_2_max_content_fit_content_10px_indefinite; -#[cfg(feature = "grid")] -mod grid_span_2_max_content_fit_content_10px_indefinite_hidden; -#[cfg(feature = "grid")] -mod grid_span_2_max_content_fit_content_80px_indefinite; -#[cfg(feature = "grid")] -mod grid_span_2_max_content_fit_content_80px_indefinite_hidden; -#[cfg(feature = "grid")] -mod grid_span_2_max_content_max_content_indefinite; -#[cfg(feature = "grid")] -mod grid_span_2_min_content_auto_indefinite; -#[cfg(feature = "grid")] -mod grid_span_2_min_content_auto_indefinite_hidden; -#[cfg(feature = "grid")] -mod grid_span_2_min_content_fit_content_10px_indefinite; -#[cfg(feature = "grid")] -mod grid_span_2_min_content_fit_content_10px_indefinite_hidden; -#[cfg(feature = "grid")] -mod grid_span_2_min_content_fit_content_30px_indefinite; -#[cfg(feature = "grid")] -mod grid_span_2_min_content_fit_content_30px_indefinite_hidden; -#[cfg(feature = "grid")] -mod grid_span_2_min_content_fit_content_80px_indefinite; -#[cfg(feature = "grid")] -mod grid_span_2_min_content_fit_content_80px_indefinite_hidden; -#[cfg(feature = "grid")] -mod grid_span_2_min_content_max_content_indefinite; -#[cfg(feature = "grid")] -mod grid_span_2_min_content_min_content_indefinite; -#[cfg(feature = "grid")] -mod grid_span_6_all_non_flex_indefinite; -#[cfg(feature = "grid")] -mod grid_span_6_all_non_flex_indefinite_hidden; -#[cfg(feature = "grid")] -mod grid_span_8_all_track_types_indefinite; -#[cfg(feature = "grid")] -mod gridflex_column_integration; -#[cfg(feature = "grid")] -mod gridflex_kitchen_sink; -#[cfg(feature = "grid")] -mod gridflex_kitchen_sink_minimise; -#[cfg(feature = "grid")] -mod gridflex_kitchen_sink_minimise2; -#[cfg(feature = "grid")] -mod gridflex_kitchen_sink_minimise3; -#[cfg(feature = "grid")] -mod gridflex_row_integration; -mod intrinsic_sizing_cross_size_column; -mod intrinsic_sizing_main_size_column; -mod intrinsic_sizing_main_size_column_nested; -mod intrinsic_sizing_main_size_column_wrap; -mod intrinsic_sizing_main_size_row; -mod intrinsic_sizing_main_size_row_nested; -mod intrinsic_sizing_main_size_row_wrap; -mod justify_content_column_center; -mod justify_content_column_flex_end; -mod justify_content_column_flex_start; -mod justify_content_column_max_height_and_margin; -mod justify_content_column_min_height_and_margin; -mod justify_content_column_min_height_and_margin_bottom; -mod justify_content_column_min_height_and_margin_top; -mod justify_content_column_space_around; -mod justify_content_column_space_between; -mod justify_content_column_space_evenly; -mod justify_content_min_max; -mod justify_content_min_width_with_padding_child_width_greater_than_parent; -mod justify_content_min_width_with_padding_child_width_lower_than_parent; -mod justify_content_overflow_min_max; -mod justify_content_row_center; -mod justify_content_row_flex_end; -mod justify_content_row_flex_start; -mod justify_content_row_max_width_and_margin; -mod justify_content_row_min_width_and_margin; -mod justify_content_row_space_around; -mod justify_content_row_space_between; -mod justify_content_row_space_evenly; -mod leaf_overflow_scrollbars_affect_available_space_x_axis; -mod leaf_overflow_scrollbars_affect_available_space_y_axis; -mod leaf_overflow_scrollbars_overriden_by_available_space; -mod leaf_overflow_scrollbars_overriden_by_max_size; -mod leaf_overflow_scrollbars_overriden_by_size; -mod leaf_overflow_scrollbars_take_up_space_both_axis; -mod leaf_overflow_scrollbars_take_up_space_x_axis; -mod leaf_overflow_scrollbars_take_up_space_y_axis; -mod leaf_padding_border_overrides_max_size; -mod leaf_padding_border_overrides_min_size; -mod leaf_padding_border_overrides_size; -mod leaf_with_content_and_border; -mod leaf_with_content_and_padding; -mod leaf_with_content_and_padding_border; -mod margin_and_flex_column; -mod margin_and_flex_row; -mod margin_and_stretch_column; -mod margin_and_stretch_row; -mod margin_auto_bottom; -mod margin_auto_bottom_and_top; -mod margin_auto_bottom_and_top_justify_center; -mod margin_auto_left; -mod margin_auto_left_and_right; -mod margin_auto_left_and_right_column; -mod margin_auto_left_and_right_column_and_center; -mod margin_auto_left_and_right_stretch; -mod margin_auto_left_child_bigger_than_parent; -mod margin_auto_left_fix_right_child_bigger_than_parent; -mod margin_auto_left_right_child_bigger_than_parent; -mod margin_auto_left_stretching_child; -mod margin_auto_mutiple_children_column; -mod margin_auto_mutiple_children_row; -mod margin_auto_right; -mod margin_auto_top; -mod margin_auto_top_and_bottom_stretch; -mod margin_auto_top_stretching_child; -mod margin_bottom; -mod margin_fix_left_auto_right_child_bigger_than_parent; -mod margin_left; -mod margin_right; -mod margin_should_not_be_part_of_max_height; -mod margin_should_not_be_part_of_max_width; -mod margin_top; -mod margin_with_sibling_column; -mod margin_with_sibling_row; -mod max_height; -mod max_height_overrides_height; -mod max_height_overrides_height_on_root; -mod max_width; -mod max_width_overrides_width; -mod max_width_overrides_width_on_root; -mod measure_child; -mod measure_child_absolute; -mod measure_child_constraint; -mod measure_child_constraint_padding_parent; -mod measure_child_with_flex_grow; -mod measure_child_with_flex_shrink; -mod measure_child_with_flex_shrink_hidden; -mod measure_child_with_min_size_greater_than_available_space; -mod measure_flex_basis_overrides_measure; -mod measure_height_overrides_measure; -mod measure_remeasure_child_after_growing; -mod measure_remeasure_child_after_shrinking; -mod measure_remeasure_child_after_stretching; -mod measure_root; -mod measure_stretch_overrides_measure; -mod measure_width_overrides_measure; -mod min_height; -mod min_height_larger_than_height; -mod min_height_overrides_height; -mod min_height_overrides_height_on_root; -mod min_height_overrides_max_height; -mod min_height_with_nested_fixed_height; -mod min_max_percent_different_width_height; -mod min_max_percent_no_width_height; -mod min_width; -mod min_width_larger_than_width; -mod min_width_overrides_max_width; -mod min_width_overrides_width; -mod min_width_overrides_width_on_root; -mod nested_overflowing_child; -mod nested_overflowing_child_in_constraint_parent; -mod only_shrinkable_item_with_flex_basis_zero; -mod overflow_cross_axis; -mod overflow_main_axis; -mod overflow_main_axis_shrink_hidden; -mod overflow_main_axis_shrink_scroll; -mod overflow_main_axis_shrink_visible; -mod overflow_scroll_main_axis_justify_content_end; -mod overflow_scrollbars_overriden_by_available_space; -mod overflow_scrollbars_overriden_by_max_size; -mod overflow_scrollbars_overriden_by_size; -mod overflow_scrollbars_take_up_space_both_axis; -mod overflow_scrollbars_take_up_space_cross_axis; -mod overflow_scrollbars_take_up_space_main_axis; -mod padding_align_end_child; -mod padding_border_overrides_max_size; -mod padding_border_overrides_min_size; -mod padding_border_overrides_size; -mod padding_border_overrides_size_flex_basis_0; -mod padding_border_overrides_size_flex_basis_0_growable; -mod padding_center_child; -mod padding_container_match_child; -mod padding_flex_child; -mod padding_no_child; -mod padding_no_size; -mod padding_stretch_child; -mod parent_wrap_child_size_overflowing_parent; -mod percent_absolute_position; -mod percent_within_flex_grow; -mod percentage_absolute_position; -mod percentage_container_in_wrapping_container; -mod percentage_different_width_height; -mod percentage_different_width_height_column; -mod percentage_flex_basis; -mod percentage_flex_basis_cross; -mod percentage_flex_basis_cross_max_height; -mod percentage_flex_basis_cross_max_width; -mod percentage_flex_basis_cross_min_height; -mod percentage_flex_basis_cross_min_width; -mod percentage_flex_basis_main_max_height; -mod percentage_flex_basis_main_max_width; -mod percentage_flex_basis_main_min_width; -mod percentage_main_max_height; -mod percentage_margin_should_calculate_based_only_on_width; -mod percentage_moderate_complexity; -mod percentage_moderate_complexity2; -mod percentage_multiple_nested_with_padding_margin_and_percentage_values; -mod percentage_padding_should_calculate_based_only_on_width; -mod percentage_position_bottom_right; -mod percentage_position_left_top; -mod percentage_size_based_on_parent_inner_size; -mod percentage_size_of_flex_basis; -mod percentage_sizes_should_not_prevent_flex_shrinking; -mod percentage_width_height; -mod percentage_width_height_undefined_parent_size; -mod position_root_with_rtl_should_position_withoutdirection; -mod relative_position_should_not_nudge_siblings; -mod rounding_flex_basis_flex_grow_row_prime_number_width; -mod rounding_flex_basis_flex_grow_row_width_of_100; -mod rounding_flex_basis_flex_shrink_row; -mod rounding_flex_basis_overrides_main_size; -mod rounding_fractial_input_1; -mod rounding_fractial_input_2; -mod rounding_fractial_input_3; -mod rounding_fractial_input_4; -mod rounding_fractial_input_5; -mod rounding_fractial_input_6; -mod rounding_fractial_input_7; -mod rounding_inner_node_controversy_combined; -mod rounding_inner_node_controversy_horizontal; -mod rounding_inner_node_controversy_vertical; -mod rounding_total_fractial; -mod rounding_total_fractial_nested; -mod simple_child; -mod single_flex_child_after_absolute_child; -mod size_defined_by_child; -mod size_defined_by_child_with_border; -mod size_defined_by_child_with_padding; -mod size_defined_by_grand_child; -mod undefined_height_with_min_max; -mod undefined_width_with_min_max; -mod undefined_width_with_min_max_row; -mod width_smaller_then_content_with_flex_grow_large_size; -mod width_smaller_then_content_with_flex_grow_small_size; -mod width_smaller_then_content_with_flex_grow_unconstraint_size; -mod width_smaller_then_content_with_flex_grow_very_large_size; -mod wrap_child; -mod wrap_column; -mod wrap_grandchild; -mod wrap_nodes_with_content_sizing_margin_cross; -mod wrap_nodes_with_content_sizing_overflowing_margin; -mod wrap_reverse_column; -mod wrap_reverse_column_fixed_size; -mod wrap_reverse_row; -mod wrap_reverse_row_align_content_center; -mod wrap_reverse_row_align_content_flex_start; -mod wrap_reverse_row_align_content_space_around; -mod wrap_reverse_row_align_content_stretch; -mod wrap_reverse_row_single_line_different_size; -mod wrap_row; -mod wrap_row_align_items_center; -mod wrap_row_align_items_flex_end; -mod wrapped_column_max_height; -mod wrapped_column_max_height_flex; -mod wrapped_row_within_align_items_center; -mod wrapped_row_within_align_items_flex_end; -mod wrapped_row_within_align_items_flex_start;