Add GUI test for scraped examples colors
This commit is contained in:
parent
c3eb202a61
commit
aa20f885c4
1 changed files with 34 additions and 0 deletions
34
src/test/rustdoc-gui/scrape-examples-color.goml
Normal file
34
src/test/rustdoc-gui/scrape-examples-color.goml
Normal file
|
@ -0,0 +1,34 @@
|
|||
// Check that scrape example code blocks have the expected colors.
|
||||
goto: "file://" + |DOC_PATH| + "/scrape_examples/fn.test_many.html"
|
||||
|
||||
define-function: (
|
||||
"check-colors",
|
||||
(theme, highlight, highlight_focus),
|
||||
[
|
||||
("local-storage", { "rustdoc-theme": |theme|, "rustdoc-use-system-theme": "false", }),
|
||||
("reload"),
|
||||
("wait-for", ".more-examples-toggle"),
|
||||
("assert-css", (".scraped-example .example-wrap .rust span.highlight:not(.focus)", {
|
||||
"background-color": |highlight|,
|
||||
}, ALL)),
|
||||
("assert-css", (".scraped-example .example-wrap .rust span.highlight.focus", {
|
||||
"background-color": |highlight_focus|,
|
||||
}, ALL)),
|
||||
]
|
||||
)
|
||||
|
||||
call-function: ("check-colors", {
|
||||
"theme": "ayu",
|
||||
"highlight": "rgb(91, 59, 1)",
|
||||
"highlight_focus": "rgb(124, 75, 15)",
|
||||
})
|
||||
call-function: ("check-colors", {
|
||||
"theme": "dark",
|
||||
"highlight": "rgb(91, 59, 1)",
|
||||
"highlight_focus": "rgb(124, 75, 15)",
|
||||
})
|
||||
call-function: ("check-colors", {
|
||||
"theme": "light",
|
||||
"highlight": "rgb(252, 255, 214)",
|
||||
"highlight_focus": "rgb(246, 253, 176)",
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue