]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc-gui/toggle-click-deadspace.goml
Update unsuspicious file list
[rustc.git] / src / test / rustdoc-gui / toggle-click-deadspace.goml
CommitLineData
3c0e092e
XL
1// This test ensures that clicking on a method summary, but not on the "[-]",
2// doesn't toggle the <details>.
2b03887a 3goto: "file://" + |DOC_PATH| + "/lib2/struct.Foo.html"
3c0e092e
XL
4assert-attribute: (".impl-items .rustdoc-toggle", {"open": ""})
5click: "h4.code-header" // This is the position of "pub" in "pub fn a_method"
6assert-attribute: (".impl-items .rustdoc-toggle", {"open": ""})
f2b60f7d
FG
7click-with-offset: (
8 ".impl-items .rustdoc-toggle summary",
9 {"x": -24, "y": 8}, // This is the position of "[-]" next to that pub fn.
10)
3c0e092e
XL
11assert-attribute-false: (".impl-items .rustdoc-toggle", {"open": ""})
12
13// Click the "Trait" part of "impl Trait" and verify it navigates.
064997fb 14click: "#impl-Trait-for-Foo h3 a:first-of-type"
2b03887a 15assert-text: (".fqn", "Trait lib2::Trait")