about summary refs log tree commit diff
path: root/src/test/rustdoc-gui/scrape-examples-toggle.goml
diff options
context:
space:
mode:
authorAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-05 09:13:28 +0100
committerAlbert Larsan <74931857+albertlarsan68@users.noreply.github.com>2023-01-11 09:32:08 +0000
commitcf2dff2b1e3fa55fa5415d524200070d0d7aacfe (patch)
tree40a88d9a46aaf3e8870676eb2538378b75a263eb /src/test/rustdoc-gui/scrape-examples-toggle.goml
parentca855e6e42787ecd062d81d53336fe6788ef51a9 (diff)
downloadrust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.tar.gz
rust-cf2dff2b1e3fa55fa5415d524200070d0d7aacfe.zip
Move /src/test to /tests
Diffstat (limited to 'src/test/rustdoc-gui/scrape-examples-toggle.goml')
-rw-r--r--src/test/rustdoc-gui/scrape-examples-toggle.goml51
1 files changed, 0 insertions, 51 deletions
diff --git a/src/test/rustdoc-gui/scrape-examples-toggle.goml b/src/test/rustdoc-gui/scrape-examples-toggle.goml
deleted file mode 100644
index 2d5df6a5d25..00000000000
--- a/src/test/rustdoc-gui/scrape-examples-toggle.goml
+++ /dev/null
@@ -1,51 +0,0 @@
-// This tests checks that the "scraped examples" toggle is working as expected.
-goto: "file://" + |DOC_PATH| + "/scrape_examples/fn.test_many.html"
-
-// Checking the color of the toggle line.
-show-text: true
-define-function: (
-    "check-color",
-    (theme, toggle_line_color, toggle_line_hover_color),
-    block {
-        local-storage: {"rustdoc-theme": |theme|, "rustdoc-use-system-theme": "false"}
-        reload:
-
-        // Clicking "More examples..." will open additional examples
-        assert-attribute-false: (".more-examples-toggle", {"open": ""})
-        click: ".more-examples-toggle"
-        assert-attribute: (".more-examples-toggle", {"open": ""})
-
-        assert-css: (".toggle-line-inner", {"background-color": |toggle_line_color|}, ALL)
-        move-cursor-to: ".toggle-line"
-        assert-css: (
-            ".toggle-line:hover .toggle-line-inner",
-            {"background-color": |toggle_line_hover_color|},
-        )
-        // Moving cursor away from the toggle line to prevent disrupting next test.
-        move-cursor-to: ".search-input"
-    },
-)
-
-call-function: ("check-color", {
-    "theme": "ayu",
-    "toggle_line_color": "rgb(153, 153, 153)",
-    "toggle_line_hover_color": "rgb(197, 197, 197)",
-})
-call-function: ("check-color", {
-    "theme": "dark",
-    "toggle_line_color": "rgb(153, 153, 153)",
-    "toggle_line_hover_color": "rgb(197, 197, 197)",
-})
-call-function: ("check-color", {
-    "theme": "light",
-    "toggle_line_color": "rgb(204, 204, 204)",
-    "toggle_line_hover_color": "rgb(153, 153, 153)",
-})
-
-// Toggling all docs will close additional examples
-click: "#toggle-all-docs"
-assert-attribute-false: (".more-examples-toggle", {"open": ""})
-
-// After re-opening the docs, the additional examples should stay closed
-click: "#toggle-all-docs"
-assert-attribute-false: (".more-examples-toggle", {"open": ""})