summaryrefslogtreecommitdiffstats
path: root/src/test/rustdoc-gui/search-keyboard.goml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/rustdoc-gui/search-keyboard.goml
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.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/search-keyboard.goml')
-rw-r--r--src/test/rustdoc-gui/search-keyboard.goml28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/test/rustdoc-gui/search-keyboard.goml b/src/test/rustdoc-gui/search-keyboard.goml
deleted file mode 100644
index be642fc49..000000000
--- a/src/test/rustdoc-gui/search-keyboard.goml
+++ /dev/null
@@ -1,28 +0,0 @@
-// Checks that the search tab results work correctly with function signature syntax
-// First, try a search-by-name
-goto: "file://" + |DOC_PATH| + "/test_docs/index.html"
-write: (".search-input", "Foo")
-// To be SURE that the search will be run.
-press-key: 'Enter'
-// Waiting for the search results to appear...
-wait-for: "#titles"
-
-// Now use the keyboard commands to switch to the third result.
-press-key: "ArrowDown"
-press-key: "ArrowDown"
-press-key: "ArrowDown"
-assert: ".search-results.active > a:focus:nth-of-type(3)"
-
-// Now switch to the second tab, then back to the first one, then arrow back up.
-press-key: "ArrowRight"
-assert: ".search-results.active:nth-of-type(2) > a:focus:nth-of-type(1)"
-press-key: "ArrowLeft"
-assert: ".search-results.active:nth-of-type(1) > a:focus:nth-of-type(3)"
-press-key: "ArrowUp"
-assert: ".search-results.active > a:focus:nth-of-type(2)"
-press-key: "ArrowUp"
-assert: ".search-results.active > a:focus:nth-of-type(1)"
-press-key: "ArrowUp"
-assert: ".search-input:focus"
-press-key: "ArrowDown"
-assert: ".search-results.active > a:focus:nth-of-type(1)"