diff options
| author | Michael Howell <michael@notriddle.com> | 2022-12-27 13:59:00 -0700 |
|---|---|---|
| committer | Michael Howell <michael@notriddle.com> | 2022-12-27 14:15:49 -0700 |
| commit | 5c0b60f9672eca0eea465dc63dbb0e55d7e0c58d (patch) | |
| tree | 5fb81b9ba7408d1690bd119ab52138512f7306b5 /src/test/rustdoc-gui/sidebar-source-code.goml | |
| parent | b38a6d373cb254697411147c0e49cd2e84864258 (diff) | |
| download | rust-5c0b60f9672eca0eea465dc63dbb0e55d7e0c58d.tar.gz rust-5c0b60f9672eca0eea465dc63dbb0e55d7e0c58d.zip | |
rustdoc: combine common sidebar background color CSS rules
Diffstat (limited to 'src/test/rustdoc-gui/sidebar-source-code.goml')
| -rw-r--r-- | src/test/rustdoc-gui/sidebar-source-code.goml | 47 |
1 files changed, 46 insertions, 1 deletions
diff --git a/src/test/rustdoc-gui/sidebar-source-code.goml b/src/test/rustdoc-gui/sidebar-source-code.goml index 36e4d555b8e..d5f57ed6102 100644 --- a/src/test/rustdoc-gui/sidebar-source-code.goml +++ b/src/test/rustdoc-gui/sidebar-source-code.goml @@ -1,7 +1,52 @@ // The goal of this test is to ensure that the sidebar is working as expected in the source // code pages. goto: "file://" + |DOC_PATH| + "/src/test_docs/lib.rs.html" -// First: desktop mode. +show-text: true + +// First, check the sidebar colors. +define-function: ( + "check-colors", + (theme, color, background_color), + [ + ("local-storage", { + "rustdoc-theme": |theme|, + "rustdoc-use-system-theme": "false", + }), + ("reload"), + // Checking results colors. + ("assert-css", (".source .sidebar", { + "color": |color|, + "background-color": |background_color| + }, ALL)), + ], +) + +call-function: ( + "check-colors", + { + "theme": "ayu", + "color": "rgb(197, 197, 197)", + "background_color": "rgb(20, 25, 31)", + } +) +call-function: ( + "check-colors", + { + "theme": "dark", + "color": "rgb(221, 221, 221)", + "background_color": "rgb(80, 80, 80)", + } +) +call-function: ( + "check-colors", + { + "theme": "light", + "color": "rgb(0, 0, 0)", + "background_color": "rgb(245, 245, 245)", + } +) + +// Next, desktop mode layout. size: (1100, 800) // We check that the sidebar isn't expanded and has the expected width. assert-css: ("nav.sidebar", {"width": "50px"}) |
