]> git.lizzy.rs Git - rust.git/blob - src/test/rustdoc-gui/headers-color.goml
Rollup merge of #103408 - compiler-errors:rpitit-rustdoc, r=GuillaumeGomez
[rust.git] / src / test / rustdoc-gui / headers-color.goml
1 // This test check for headers text and background colors for the different themes.
2
3 define-function: (
4     "check-colors",
5     (theme, color, code_header_color, focus_background_color, headings_color),
6     [
7         ("goto", "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html"),
8         // This is needed so that the text color is computed.
9         ("show-text", true),
10         ("local-storage", {"rustdoc-theme": |theme|, "rustdoc-use-system-theme": "false"}),
11         ("reload"),
12         ("assert-css", (
13             ".impl",
14             {"color": |color|, "background-color": "rgba(0, 0, 0, 0)"},
15             ALL,
16         )),
17         ("assert-css", (
18             ".impl .code-header",
19             {"color": |code_header_color|, "background-color": "rgba(0, 0, 0, 0)"},
20             ALL,
21         )),
22         ("goto", "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html#impl-Foo"),
23         ("assert-css", (
24             "#impl-Foo",
25             {"color": |color|, "background-color": |focus_background_color|},
26         )),
27         ("goto", "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html#method.must_use"),
28         ("assert-css", (
29             "#method\.must_use",
30             {"color": |color|, "background-color": |focus_background_color|},
31             ALL,
32         )),
33         ("goto", "file://" + |DOC_PATH| + "/test_docs/index.html"),
34         ("assert-css", (".small-section-header a", {"color": |color|}, ALL)),
35         ("goto", "file://" + |DOC_PATH| + "/test_docs/struct.HeavilyDocumentedStruct.html"),
36         // We select headings (h2, h3, h...).
37         ("assert-css", (".docblock > :not(p) > a", {"color": |headings_color|}, ALL)),
38     ],
39 )
40
41 call-function: (
42     "check-colors",
43     {
44         "theme": "ayu",
45         "color": "rgb(197, 197, 197)",
46         "code_header_color": "rgb(230, 225, 207)",
47         "focus_background_color": "rgba(255, 236, 164, 0.06)",
48         "headings_color": "rgb(57, 175, 215)",
49     },
50 )
51 call-function: (
52     "check-colors",
53     {
54         "theme": "dark",
55         "color": "rgb(221, 221, 221)",
56         "code_header_color": "rgb(221, 221, 221)",
57         "focus_background_color": "rgb(73, 74, 61)",
58         "headings_color": "rgb(210, 153, 29)",
59     },
60 )
61 call-function: (
62     "check-colors",
63     {
64         "theme": "light",
65         "color": "rgb(0, 0, 0)",
66         "code_header_color": "rgb(0, 0, 0)",
67         "focus_background_color": "rgb(253, 255, 211)",
68         "headings_color": "rgb(56, 115, 173)",
69     },
70 )