Add regression test for items list size (#128023)

This commit is contained in:
Guillaume Gomez 2024-07-22 11:33:03 +02:00
parent ae7b1c1916
commit 7de26684e8
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,23 @@
// This test ensures that the item name's width is not wrapped.
go-to: "file://" + |DOC_PATH| + "/test_docs/short_docs/index.html"
set-window-size: (1000, 600)
// First we ensure that there is only one `item-table`...
assert-count: ("ul.item-table", 1)
// And only two items in it.
assert-count: ("ul.item-table li", 2)
// If they don't have the same height, then it means one of the two is on two lines whereas it
// shouldn't!
compare-elements-size: (
".item-table .item-name a[href='fn.mult_vec_num.html']",
".item-table .item-name a[href='fn.subt_vec_num.html']",
["height"],
)
// We also check that the `item-table` is taking the full width.
compare-elements-size: (
"#functions",
"ul.item-table",
["width"],
)

View File

@ -620,3 +620,11 @@ pub trait OneBound: Sized {}
pub trait TwoBounds: Sized + Copy {}
pub trait ThreeBounds: Sized + Copy + Eq {}
}
pub mod short_docs {
/// mult_vec_num(x: &[f64], y: f64)
pub fn mult_vec_num() {}
/// subt_vec_num(x: &[f64], y: f64)
pub fn subt_vec_num() {}
}