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