summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-gui/shortcuts.goml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:03 +0000
commit64d98f8ee037282c35007b64c2649055c56af1db (patch)
tree5492bcf97fce41ee1c0b1cc2add283f3e66cdab0 /src/test/rustdoc-gui/shortcuts.goml
parentAdding debian version 1.67.1+dfsg1-1. (diff)
downloadrustc-64d98f8ee037282c35007b64c2649055c56af1db.tar.xz
rustc-64d98f8ee037282c35007b64c2649055c56af1db.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/rustdoc-gui/shortcuts.goml')
-rw-r--r--src/test/rustdoc-gui/shortcuts.goml31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/test/rustdoc-gui/shortcuts.goml b/src/test/rustdoc-gui/shortcuts.goml
deleted file mode 100644
index 9068680d6..000000000
--- a/src/test/rustdoc-gui/shortcuts.goml
+++ /dev/null
@@ -1,31 +0,0 @@
-// 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"})
-// Checking doc collapse and expand.
-// It should be displaying a "-":
-assert-text: ("#toggle-all-docs", "[\u2212]")
-press-key: "-"
-wait-for-text: ("#toggle-all-docs", "[+]")
-assert-attribute: ("#toggle-all-docs", {"class": "will-expand"})
-// Pressing it again shouldn't do anything.
-press-key: "-"
-assert-text: ("#toggle-all-docs", "[+]")
-assert-attribute: ("#toggle-all-docs", {"class": "will-expand"})
-// Expanding now.
-press-key: "+"
-wait-for-text: ("#toggle-all-docs", "[\u2212]")
-assert-attribute: ("#toggle-all-docs", {"class": ""})
-// Pressing it again shouldn't do anything.
-press-key: "+"
-assert-text: ("#toggle-all-docs", "[\u2212]")
-assert-attribute: ("#toggle-all-docs", {"class": ""})