12 lines
339 B
Plaintext
12 lines
339 B
Plaintext
// 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:
|
|
},
|
|
)
|