mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 13:46:03 +00:00
16 lines
467 B
Plaintext
16 lines
467 B
Plaintext
// This test checks that the right font is applied to the `i` tooltip element.
|
|
|
|
define-function: (
|
|
"check-font",
|
|
[path],
|
|
block {
|
|
go-to: "file://" + |DOC_PATH| + "/test_docs/" + |path|
|
|
assert-css: (
|
|
"a.tooltip", {"font-family": '"Source Serif 4", NanumBarunGothic, serif'}, ALL,
|
|
)
|
|
}
|
|
)
|
|
|
|
call-function: ("check-font", {"path": "tooltips/fn.bar.html"})
|
|
call-function: ("check-font", {"path": "tooltips/struct.X.html"})
|