summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-gui/shortcuts.goml
blob: 1f20a0eaa9982d21630b0fcad056e01356bacabf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Check that the various shortcuts are working.
goto: file://|DOC_PATH|/test_docs/index.html
// We first check that the search input isn't already focused.
assert-false: "input.search-input:focus"
press-key: "s"
assert: "input.search-input:focus"
press-key: "Escape"
assert-false: "input.search-input:focus"
// We now check for the help popup.
press-key: "?"
assert-css: ("#help-button .popover", {"display": "block"})
press-key: "Escape"
assert-css: ("#help-button .popover", {"display": "none"})