]> git.lizzy.rs Git - rust.git/blob - tests/rustdoc-gui/code-color.goml
Merge commit '1d8491b120223272b13451fc81265aa64f7f4d5b' into sync-from-rustfmt
[rust.git] / tests / rustdoc-gui / code-color.goml
1 // The ayu theme has a different color for the "<code>" tags in the doc blocks. We need to
2 // check that the rule isn't applied on other "<code>" elements.
3 //
4 // While we're at it, we also check it for the other themes.
5 goto: "file://" + |DOC_PATH| + "/test_docs/fn.foo.html"
6 // If the text isn't displayed, the browser doesn't compute color style correctly...
7 show-text: true
8
9 define-function: (
10     "check-colors",
11     (theme, doc_code_color, doc_inline_code_color),
12     block {
13         // Set the theme.
14         local-storage: {"rustdoc-theme": |theme|, "rustdoc-use-system-theme": "false"}
15         // We reload the page so the local storage settings are being used.
16         reload:
17         assert-css: (".docblock pre > code", {"color": |doc_code_color|}, ALL)
18         assert-css: (".docblock > p > code", {"color": |doc_inline_code_color|}, ALL)
19     },
20 )
21
22 call-function: ("check-colors", ("ayu", "rgb(230, 225, 207)", "rgb(255, 180, 84)"))
23 call-function: ("check-colors", ("dark", "rgb(221, 221, 221)", "rgb(221, 221, 221)"))
24 call-function: ("check-colors", ("light", "rgb(0, 0, 0)", "rgb(0, 0, 0)"))