2021-07-17 22:03:08 +00:00
|
|
|
// This test ensures that the type declaration content overflow is handled inside the <pre> directly.
|
2023-04-11 17:11:34 +00:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/lib2/long_table/struct.Foo.html"
|
2021-07-17 22:03:08 +00:00
|
|
|
// We set a fixed size so there is no chance of "random" resize.
|
2023-04-11 17:11:34 +00:00
|
|
|
set-window-size: (1100, 800)
|
2021-07-17 22:03:08 +00:00
|
|
|
// Logically, the ".docblock" and the "<p>" should have the same scroll width.
|
|
|
|
compare-elements-property: (".top-doc .docblock", ".top-doc .docblock > p", ["scrollWidth"])
|
2022-09-22 18:51:48 +00:00
|
|
|
assert-property: (".top-doc .docblock", {"scrollWidth": "816"})
|
2021-07-17 22:03:08 +00:00
|
|
|
// However, since there is overflow in the <table>, its scroll width is bigger.
|
2022-09-10 15:36:17 +00:00
|
|
|
assert-property: (".top-doc .docblock table", {"scrollWidth": "1572"})
|
2021-09-08 13:09:47 +00:00
|
|
|
|
|
|
|
// Checking it works on other doc blocks as well...
|
|
|
|
|
|
|
|
// Logically, the ".docblock" and the "<p>" should have the same scroll width.
|
2021-12-12 17:28:58 +00:00
|
|
|
compare-elements-property: (
|
2022-03-08 17:11:29 +00:00
|
|
|
"#implementations-list > details .docblock",
|
|
|
|
"#implementations-list > details .docblock > p",
|
2021-12-12 17:28:58 +00:00
|
|
|
["scrollWidth"],
|
|
|
|
)
|
2022-09-22 18:51:48 +00:00
|
|
|
assert-property: ("#implementations-list > details .docblock", {"scrollWidth": "816"})
|
2021-09-08 13:09:47 +00:00
|
|
|
// However, since there is overflow in the <table>, its scroll width is bigger.
|
2022-09-10 15:36:17 +00:00
|
|
|
assert-property: ("#implementations-list > details .docblock table", {"scrollWidth": "1572"})
|