2023-07-14 18:38:01 -05:00
|
|
|
// We check the background color on the jump to definition links in the src code page.
|
2024-04-05 14:38:55 -05:00
|
|
|
include: "utils.goml"
|
2023-04-11 12:11:34 -05:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/src/link_to_definition/lib.rs.html"
|
2021-09-12 08:43:30 -05:00
|
|
|
|
2022-10-23 08:40:56 -05:00
|
|
|
define-function: (
|
|
|
|
"check-background-color",
|
2024-04-01 14:11:22 -05:00
|
|
|
[theme, background_color],
|
2023-01-06 08:18:51 -06:00
|
|
|
block {
|
2024-04-05 14:38:55 -05:00
|
|
|
call-function: ("switch-theme", {"theme": |theme|})
|
2023-01-06 08:18:51 -06:00
|
|
|
assert-css: (
|
2023-07-14 18:38:01 -05:00
|
|
|
"body.src .example-wrap pre.rust a",
|
2022-10-23 08:40:56 -05:00
|
|
|
{"background-color": |background_color|},
|
|
|
|
ALL,
|
2023-01-06 08:18:51 -06:00
|
|
|
)
|
|
|
|
},
|
2021-12-12 11:28:58 -06:00
|
|
|
)
|
2021-09-12 08:43:30 -05:00
|
|
|
|
2024-04-01 14:11:22 -05:00
|
|
|
call-function: ("check-background-color", {
|
|
|
|
"theme": "ayu",
|
|
|
|
"background_color": "#333",
|
|
|
|
})
|
|
|
|
call-function: ("check-background-color", {
|
|
|
|
"theme": "dark",
|
|
|
|
"background_color": "#333",
|
|
|
|
})
|
|
|
|
call-function: ("check-background-color", {
|
|
|
|
"theme": "light",
|
|
|
|
"background_color": "#eee",
|
|
|
|
})
|