]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-gui/source-code-page.goml
Merge commit '3ae8faff4d46ad92f194c2a4b941c3152a701b31' into clippyup
[rust.git] / src / test / rustdoc-gui / source-code-page.goml
1 goto: file://|DOC_PATH|/src/test_docs/lib.rs.html
2 // Check that we can click on the line number.
3 click: (40, 224) // This is the position of the span for line 4.
4 // Unfortunately, "#4" isn't a valid query selector, so we have to go around that limitation
5 // by instead getting the nth span.
6 assert: (".line-numbers > span:nth-child(4)", "class", "line-highlighted")
7 // We now check that the good spans are highlighted
8 goto: file://|DOC_PATH|/src/test_docs/lib.rs.html#4-6
9 assert-false: (".line-numbers > span:nth-child(3)", "class", "line-highlighted")
10 assert: (".line-numbers > span:nth-child(4)", "class", "line-highlighted")
11 assert: (".line-numbers > span:nth-child(5)", "class", "line-highlighted")
12 assert: (".line-numbers > span:nth-child(6)", "class", "line-highlighted")
13 assert-false: (".line-numbers > span:nth-child(7)", "class", "line-highlighted")