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.
|
2022-10-07 18:17:05 +00:00
|
|
|
goto: "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".
|
|
|
|
size: (600, 800)
|
|
|
|
// We check that the scroll is at the top first.
|
|
|
|
assert-property: ("html", {"scrollTop": "0"})
|
|
|
|
|
|
|
|
click: '//a[text() = "barbar"]'
|
|
|
|
assert-property: ("html", {"scrollTop": "125"})
|
|
|
|
click: '//a[text() = "bar"]'
|
2022-09-21 23:44:33 +00:00
|
|
|
assert-property: ("html", {"scrollTop": "156"})
|
2022-03-05 15:02:28 +00:00
|
|
|
click: '//a[text() = "sub_fn"]'
|
|
|
|
assert-property: ("html", {"scrollTop": "53"})
|
|
|
|
|
|
|
|
// 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"]'
|
|
|
|
assert-property: ("html", {"scrollTop": "53"})
|