Skip to content

Commit 457f578

Browse files
Add test for line-number setting
1 parent e8b5af1 commit 457f578

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// Checks that the setting "line numbers" is working as expected.
2+
goto: file://|DOC_PATH|/test_docs/fn.foo.html
3+
4+
// We check that without this setting, there is no line number displayed.
5+
assert-false: "pre.line-number"
6+
7+
// We now set the setting to show the line numbers on code examples.
8+
local-storage: {"rustdoc-line-numbers": "true" }
9+
// We reload to make the line numbers appear.
10+
reload:
11+
12+
// We wait for them to be added into the DOM by the JS...
13+
wait-for: "pre.line-number"
14+
// If the test didn't fail, it means that it was found!
15+
// Let's now check some CSS properties...
16+
assert-css: ("pre.line-number", {
17+
"margin": "0px",
18+
"padding": "13px 8px",
19+
"text-align": "right"
20+
})
21+
// The first code block has two lines so let's check its `<pre>` elements lists both of them.
22+
assert-text: ("pre.line-number", "1\n2")

src/test/rustdoc-gui/src/test_docs/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ use std::fmt;
1212
///
1313
/// ```
1414
/// println!("nothing fancy");
15+
/// println!("but with two lines!");
1516
/// ```
1617
///
1718
/// A failing to compile one:

0 commit comments

Comments
 (0)