blob: d9f8726ec53186e4604eba02d9fa07871ec34d65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// This file contains code to be re-used by other tests.
define-function: (
"switch-theme",
[theme],
block {
// Set the theme.
set-local-storage: {"rustdoc-theme": |theme|, "rustdoc-use-system-theme": "false"}
// We reload the page so the local storage settings are being used.
reload:
},
)
|