]> git.proxmox.com Git - rustc.git/blame - src/test/rustdoc-gui/sidebar-source-code.goml
New upstream version 1.60.0+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)
10// We wait for the sidebar to be expanded (there is a 0.5s animation).
11wait-for: 600
12assert-css: ("nav.sidebar.expanded", {"width": "300px"})
5099ac24 13assert-css: ("nav.sidebar.expanded a", {"font-size": "14px"})
a2a8927a
XL
14// We collapse the sidebar.
15click: (10, 10)
16// We wait for the sidebar to be collapsed (there is a 0.5s animation).
17wait-for: 600
18// We ensure that the class has been removed.
19assert-false: "nav.sidebar.expanded"
20assert: "nav.sidebar"
21
22// We now switch to mobile mode.
23size: (600, 600)
24// We check that the sidebar has the expected width (0 and 1px for the border).
25assert-css: ("nav.sidebar", {"width": "1px"})
26// We expand the sidebar.
27click: "#sidebar-toggle"
28assert-css: ("nav.sidebar.expanded", {"width": "600px"})
29// We collapse the sidebar.
30click: (10, 10)
31// We ensure that the class has been removed.
32assert-false: "nav.sidebar.expanded"
33assert: "nav.sidebar"
5099ac24
FG
34
35// Check that the topbar is not visible
36assert-property: (".mobile-topbar", {"offsetParent": "null"})