2022-03-05 15:02:28 +00:00
|
|
|
// We check that when the anchor changes and is output of the displayed content,
|
|
|
|
// the page is scrolled to it.
|
2023-04-11 17:11:34 +00:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/src/link_to_definition/lib.rs.html"
|
2022-03-05 15:02:28 +00:00
|
|
|
|
|
|
|
// We reduce the window size to make it easier to make an element "out of the page".
|
2023-04-11 17:11:34 +00:00
|
|
|
set-window-size: (600, 800)
|
2022-03-05 15:02:28 +00:00
|
|
|
// We check that the scroll is at the top first.
|
|
|
|
assert-property: ("html", {"scrollTop": "0"})
|
|
|
|
|
2023-07-12 14:50:43 +00:00
|
|
|
click: '//a[text() = "barbar" and @href="#5-7"]'
|
2024-09-03 02:42:28 +00:00
|
|
|
assert-property: ("html", {"scrollTop": "194"})
|
2023-07-12 14:50:43 +00:00
|
|
|
click: '//a[text() = "bar" and @href="#28-36"]'
|
2024-09-03 02:42:28 +00:00
|
|
|
assert-property: ("html", {"scrollTop": "225"})
|
2024-07-07 00:12:53 +00:00
|
|
|
click: '//a[normalize-space() = "sub_fn" and @href="#2-4"]'
|
2024-09-03 02:42:28 +00:00
|
|
|
assert-property: ("html", {"scrollTop": "122"})
|
2022-03-05 15:02:28 +00:00
|
|
|
|
|
|
|
// We now check that clicking on lines doesn't change the scroll
|
|
|
|
// Extra information: the "sub_fn" function header is on line 1.
|
|
|
|
click: '//*[@id="6"]'
|
2024-09-03 02:42:28 +00:00
|
|
|
assert-property: ("html", {"scrollTop": "122"})
|