summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-gui/shortcuts.goml
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/rustdoc-gui/shortcuts.goml')
-rw-r--r--src/test/rustdoc-gui/shortcuts.goml13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/test/rustdoc-gui/shortcuts.goml b/src/test/rustdoc-gui/shortcuts.goml
new file mode 100644
index 000000000..1f20a0eaa
--- /dev/null
+++ b/src/test/rustdoc-gui/shortcuts.goml
@@ -0,0 +1,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"})