Skip to content

Commit 79a40c9

Browse files
committed
rustdoc: add rustdoc top bar web component
1 parent 8511e40 commit 79a40c9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/tools/compiletest/src/runtest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2151,7 +2151,7 @@ impl<'test> TestCx<'test> {
21512151

21522152
#[rustfmt::skip]
21532153
let tidy_args = [
2154-
"--new-blocklevel-tags", "rustdoc-search,rustdoc-toolbar",
2154+
"--new-blocklevel-tags", "rustdoc-search,rustdoc-toolbar,rustdoc-topbar",
21552155
"--indent", "yes",
21562156
"--indent-spaces", "2",
21572157
"--wrap", "0",

src/tools/html-checker/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ fn check_html_file(file: &Path) -> usize {
3131
.arg("--mute-id") // this option is useful in case we want to mute more warnings
3232
.arg("yes")
3333
.arg("--new-blocklevel-tags")
34-
.arg("rustdoc-search,rustdoc-toolbar") // custom elements
34+
.arg("rustdoc-search,rustdoc-toolbar,rustdoc-topbar") // custom elements
3535
.arg("--mute")
3636
.arg(&to_mute_s)
3737
.arg(file);

0 commit comments

Comments
 (0)