]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc-gui/sidebar-source-code.goml
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / rustdoc-gui / sidebar-source-code.goml
CommitLineData
a2a8927a
XL
1// The goal of this test is to ensure that the sidebar is working as expected in the source
2// code pages.
3goto: file://|DOC_PATH|/src/test_docs/lib.rs.html
4// First: desktop mode.
5size: (1100, 800)
6// We check that the sidebar isn't expanded and has the expected width.
7assert-css: ("nav.sidebar", {"width": "50px"})
8// We now click on the button to expand the sidebar.
9click: (10, 10)
5e7ed085
FG
10// We wait for the sidebar to be expanded.
11wait-for-css: ("nav.sidebar.expanded", {"width": "300px"})
5099ac24 12assert-css: ("nav.sidebar.expanded a", {"font-size": "14px"})
a2a8927a
XL
13// We collapse the sidebar.
14click: (10, 10)
a2a8927a 15// We ensure that the class has been removed.
5e7ed085 16wait-for: "nav.sidebar:not(.expanded)"
a2a8927a
XL
17assert: "nav.sidebar"
18
19// We now switch to mobile mode.
20size: (600, 600)
21// We check that the sidebar has the expected width (0 and 1px for the border).
22assert-css: ("nav.sidebar", {"width": "1px"})
23// We expand the sidebar.
24click: "#sidebar-toggle"
25assert-css: ("nav.sidebar.expanded", {"width": "600px"})
26// We collapse the sidebar.
27click: (10, 10)
28// We ensure that the class has been removed.
29assert-false: "nav.sidebar.expanded"
30assert: "nav.sidebar"
5099ac24
FG
31
32// Check that the topbar is not visible
33assert-property: (".mobile-topbar", {"offsetParent": "null"})