We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87fba23 commit aad4227Copy full SHA for aad4227
src/test/rustdoc-gui/toggle-docs.goml
@@ -17,7 +17,14 @@ assert-text: ("#toggle-all-docs", "[−]")
17
goto: file://|DOC_PATH|/test_docs/struct.Foo.html
18
// We first check that everything is visible.
19
assert-text: ("#toggle-all-docs", "[−]")
20
-assert-attribute: ("details.rustdoc-toggle", {"open": ""}, ALL)
+assert-attribute: ("#implementations-list details.rustdoc-toggle", {"open": ""}, ALL)
21
+assert-attribute: ("#trait-implementations-list details.rustdoc-toggle", {"open": ""}, ALL)
22
+assert-attribute-false: (
23
+ "#blanket-implementations-list > details.rustdoc-toggle",
24
+ {"open": ""},
25
+ ALL,
26
+)
27
+
28
// We collapse them all.
29
click: "#toggle-all-docs"
30
wait-for: 50
0 commit comments