// The ayu theme has a different color for the "" tags in the doc blocks. We need to // check that the rule isn't applied on other "" elements. // // While we're at it, we also check it for the other themes. go-to: "file://" + |DOC_PATH| + "/test_docs/fn.foo.html" // If the text isn't displayed, the browser doesn't compute color style correctly... show-text: true define-function: ( "check-colors", (theme, doc_code_color, doc_inline_code_color), block { // Set the theme. set-local-storage: {"rustdoc-theme": |theme|, "rustdoc-use-system-theme": "false"} // We reload the page so the local storage settings are being used. reload: assert-css: (".docblock pre > code", {"color": |doc_code_color|}, ALL) assert-css: (".docblock > p > code", {"color": |doc_inline_code_color|}, ALL) }, ) call-function: ("check-colors", { "theme": "ayu", "doc_code_color": "rgb(230, 225, 207)", "doc_inline_code_color": "rgb(255, 180, 84)", }) call-function: ("check-colors", { "theme": "dark", "doc_code_color": "rgb(221, 221, 221)", "doc_inline_code_color": "rgb(221, 221, 221)", }) call-function: ("check-colors", { "theme": "light", "doc_code_color": "rgb(0, 0, 0)", "doc_inline_code_color": "rgb(0, 0, 0)", })