Skip to content

Commit 49d20c4

Browse files
authored
Rollup merge of #94642 - GuillaumeGomez:source-code-scroll, r=Urgau
Fix source code pages scroll To reproduce the bug, go to https://doc.rust-lang.org/nightly/nightly-rustc/src/rustc_ast/ast.rs.html#537-541 and click on the `Path` link. The page won't scroll to the content. r? `@Urgau`
2 parents e887e66 + 40e3b6e commit 49d20c4

File tree

3 files changed

+56
-9
lines changed

3 files changed

+56
-9
lines changed

src/librustdoc/html/static/js/source-script.js

+7-9
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ function createSourceSidebar() {
149149

150150
var lineNumbersRegex = /^#?(\d+)(?:-(\d+))?$/;
151151

152-
function highlightSourceLines(scrollTo, match) {
152+
function highlightSourceLines(match) {
153153
if (typeof match === "undefined") {
154154
match = window.location.hash.match(lineNumbersRegex);
155155
}
@@ -170,11 +170,9 @@ function highlightSourceLines(scrollTo, match) {
170170
if (!elem) {
171171
return;
172172
}
173-
if (scrollTo) {
174-
var x = document.getElementById(from);
175-
if (x) {
176-
x.scrollIntoView();
177-
}
173+
var x = document.getElementById(from);
174+
if (x) {
175+
x.scrollIntoView();
178176
}
179177
onEachLazy(document.getElementsByClassName("line-numbers"), function(e) {
180178
onEachLazy(e.getElementsByTagName("span"), function(i_e) {
@@ -198,7 +196,7 @@ var handleSourceHighlight = (function() {
198196
y = window.scrollY;
199197
if (searchState.browserSupportsHistoryApi()) {
200198
history.replaceState(null, null, "#" + name);
201-
highlightSourceLines(true);
199+
highlightSourceLines();
202200
} else {
203201
location.replace("#" + name);
204202
}
@@ -230,15 +228,15 @@ var handleSourceHighlight = (function() {
230228
window.addEventListener("hashchange", function() {
231229
var match = window.location.hash.match(lineNumbersRegex);
232230
if (match) {
233-
return highlightSourceLines(false, match);
231+
return highlightSourceLines(match);
234232
}
235233
});
236234

237235
onEachLazy(document.getElementsByClassName("line-numbers"), function(el) {
238236
el.addEventListener("click", handleSourceHighlight);
239237
});
240238

241-
highlightSourceLines(true);
239+
highlightSourceLines();
242240

243241
window.createSourceSidebar = createSourceSidebar;
244242
})();
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// We check that when the anchor changes and is output of the displayed content,
2+
// the page is scrolled to it.
3+
goto: file://|DOC_PATH|/src/link_to_definition/lib.rs.html
4+
5+
// We reduce the window size to make it easier to make an element "out of the page".
6+
size: (600, 800)
7+
// We check that the scroll is at the top first.
8+
assert-property: ("html", {"scrollTop": "0"})
9+
10+
click: '//a[text() = "barbar"]'
11+
assert-property: ("html", {"scrollTop": "125"})
12+
click: '//a[text() = "bar"]'
13+
assert-property: ("html", {"scrollTop": "166"})
14+
click: '//a[text() = "sub_fn"]'
15+
assert-property: ("html", {"scrollTop": "53"})
16+
17+
// We now check that clicking on lines doesn't change the scroll
18+
// Extra information: the "sub_fn" function header is on line 1.
19+
click: '//*[@id="6"]'
20+
assert-property: ("html", {"scrollTop": "53"})
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,35 @@
1+
pub fn sub_fn() {
2+
barbar();
3+
}
4+
fn barbar() {
5+
bar(vec![], vec![], vec![], vec![], Bar { a: "a".into(), b: 0 });
6+
}
7+
18
pub struct Bar {
29
pub a: String,
310
pub b: u32,
411
}
512

613
pub fn foo(_b: &Bar) {}
14+
15+
// The goal now is to add
16+
// a lot of lines so
17+
// that the next content
18+
// will be out of the screen
19+
// to allow us to test that
20+
// if the anchor changes to
21+
// something outside of the
22+
// current view, it'll
23+
// scroll to it as expected.
24+
25+
// More filling content.
26+
27+
pub fn bar(
28+
_a: Vec<String>,
29+
_b: Vec<String>,
30+
_c: Vec<String>,
31+
_d: Vec<String>,
32+
_e: Bar,
33+
) {
34+
sub_fn();
35+
}

0 commit comments

Comments
 (0)