| // We check that when the anchor changes and is output of the displayed content, |
| // the page is scrolled to it. |
| go-to: "file://" + |DOC_PATH| + "/src/link_to_definition/lib.rs.html" |
| // We reduce the window size to make it easier to make an element "out of the page". |
| set-window-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": "149"}) |
| click: '//a[text() = "bar"]' |
| assert-property: ("html", {"scrollTop": "180"}) |
| click: '//a[text() = "sub_fn"]' |
| assert-property: ("html", {"scrollTop": "77"}) |
| // We now check that clicking on lines doesn't change the scroll |
| // Extra information: the "sub_fn" function header is on line 1. |
| assert-property: ("html", {"scrollTop": "77"}) |