2023-01-07 13:50:03 +00:00
|
|
|
// Test to check that the "warning blocks" are displayed as expected.
|
|
|
|
go-to: "file://" + |DOC_PATH| + "/test_docs/struct.Foo.html"
|
|
|
|
show-text: true
|
|
|
|
|
|
|
|
define-function: (
|
|
|
|
"check-warning",
|
2023-08-24 15:42:31 +00:00
|
|
|
(theme, color, border_color),
|
2023-01-07 13:50:03 +00:00
|
|
|
block {
|
|
|
|
set-local-storage: {"rustdoc-theme": |theme|, "rustdoc-use-system-theme": "false"}
|
|
|
|
reload:
|
|
|
|
|
|
|
|
// The IDs are added directly into the DOM to make writing this test easier.
|
|
|
|
assert-css: ("#doc-warning-1", {
|
|
|
|
"margin-bottom": "12px",
|
|
|
|
"color": |color|,
|
|
|
|
"border-left": "2px solid " + |border_color|,
|
2023-08-26 09:25:04 +00:00
|
|
|
"background-color": "transparent",
|
2023-01-07 13:50:03 +00:00
|
|
|
})
|
|
|
|
assert-css: ("#doc-warning-2", {
|
|
|
|
"margin-bottom": "0px",
|
|
|
|
"color": |color|,
|
|
|
|
"border-left": "2px solid " + |border_color|,
|
2023-08-26 09:25:04 +00:00
|
|
|
"background-color": "transparent",
|
2023-01-07 13:50:03 +00:00
|
|
|
})
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
call-function: ("check-warning", {
|
|
|
|
"theme": "ayu",
|
2023-08-24 15:42:31 +00:00
|
|
|
"color": "#c5c5c5",
|
|
|
|
"border_color": "#ff8e00",
|
2023-01-07 13:50:03 +00:00
|
|
|
})
|
|
|
|
call-function: ("check-warning", {
|
|
|
|
"theme": "dark",
|
2023-08-24 15:42:31 +00:00
|
|
|
"color": "#ddd",
|
|
|
|
"border_color": "#ff8e00",
|
2023-01-07 13:50:03 +00:00
|
|
|
})
|
|
|
|
call-function: ("check-warning", {
|
|
|
|
"theme": "light",
|
2023-08-24 15:42:31 +00:00
|
|
|
"color": "black",
|
|
|
|
"border_color": "#ff8e00",
|
2023-01-07 13:50:03 +00:00
|
|
|
})
|