about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2022-09-04 15:16:55 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2022-09-04 15:16:55 +0200
commit41703e649b152d8ed9547f9c403cd9f20c46f4b1 (patch)
tree3a509227baddbe2d24702a89f46f278e61835d2c
parentb11bf65e4aaa125952b6479a63f36e9e83efc32c (diff)
downloadrust-41703e649b152d8ed9547f9c403cd9f20c46f4b1.tar.gz
rust-41703e649b152d8ed9547f9c403cd9f20c46f4b1.zip
Remove duplicated test (superseeded by search-form-elements.goml)
-rw-r--r--src/test/rustdoc-gui/search-input.goml22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/rustdoc-gui/search-input.goml b/src/test/rustdoc-gui/search-input.goml
deleted file mode 100644
index fd61c4f43d1..00000000000
--- a/src/test/rustdoc-gui/search-input.goml
+++ /dev/null
@@ -1,22 +0,0 @@
-// Ensures that the search input border color changes on focus.
-goto: file://|DOC_PATH|/test_docs/index.html
-local-storage: {"rustdoc-use-system-theme": "false", "rustdoc-theme": "dark"}
-reload:
-
-assert-css: (".search-input", {"border-color": "rgb(224, 224, 224)"})
-click: ".search-input"
-assert-css: (".search-input", {"border-color": "rgb(0, 141, 253)"})
-
-local-storage: {"rustdoc-theme": "light"}
-reload:
-
-assert-css: (".search-input", {"border-color": "rgb(224, 224, 224)"})
-click: ".search-input"
-assert-css: (".search-input", {"border-color": "rgb(102, 175, 233)"})
-
-local-storage: {"rustdoc-theme": "ayu"}
-reload:
-
-assert-css: (".search-input", {"border-color": "rgb(92, 103, 115)"})
-click: ".search-input"
-assert-css: (".search-input", {"border-color": "rgb(92, 103, 115)"})