-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #94648 - RalfJung:rollup-4iorcrd, r=RalfJung
Rollup of 4 pull requests Successful merges: - #94630 (Update note about tier 2 docs.) - #94633 (Suggest removing a semicolon after derive attributes) - #94642 (Fix source code pages scroll) - #94645 (do not attempt to open cgroup files under Miri) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
- Loading branch information
Showing
8 changed files
with
93 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// We check that when the anchor changes and is output of the displayed content, | ||
// the page is scrolled to it. | ||
goto: 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". | ||
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"]' | ||
assert-property: ("html", {"scrollTop": "166"}) | ||
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"}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,35 @@ | ||
pub fn sub_fn() { | ||
barbar(); | ||
} | ||
fn barbar() { | ||
bar(vec![], vec![], vec![], vec![], Bar { a: "a".into(), b: 0 }); | ||
} | ||
|
||
pub struct Bar { | ||
pub a: String, | ||
pub b: u32, | ||
} | ||
|
||
pub fn foo(_b: &Bar) {} | ||
|
||
// The goal now is to add | ||
// a lot of lines so | ||
// that the next content | ||
// will be out of the screen | ||
// to allow us to test that | ||
// if the anchor changes to | ||
// something outside of the | ||
// current view, it'll | ||
// scroll to it as expected. | ||
|
||
// More filling content. | ||
|
||
pub fn bar( | ||
_a: Vec<String>, | ||
_b: Vec<String>, | ||
_c: Vec<String>, | ||
_d: Vec<String>, | ||
_e: Bar, | ||
) { | ||
sub_fn(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#[derive(Debug, Clone)]; //~ERROR expected item after attributes | ||
struct Foo; | ||
|
||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
error: expected item after attributes | ||
--> $DIR/attr-with-a-semicolon.rs:1:1 | ||
| | ||
LL | #[derive(Debug, Clone)]; | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ | ||
| | ||
help: consider removing this semicolon | ||
| | ||
LL - #[derive(Debug, Clone)]; | ||
LL + #[derive(Debug, Clone)] | ||
| | ||
|
||
error: aborting due to previous error | ||
|