73 lines
2.3 KiB
Plaintext
73 lines
2.3 KiB
Plaintext
|
// This test ensures that the "pocket menus" are working as expected.
|
||
|
goto: file://|DOC_PATH|/test_docs/index.html
|
||
|
// First we check that the help menu doesn't exist yet.
|
||
|
assert-false: "#help-button .popover"
|
||
|
// Then we display the help menu.
|
||
|
click: "#help-button"
|
||
|
assert: "#help-button .popover"
|
||
|
assert-css: ("#help-button .popover", {"display": "block"})
|
||
|
|
||
|
// Now we click somewhere else on the page to ensure it is handling the blur event
|
||
|
// correctly.
|
||
|
click: ".sidebar"
|
||
|
assert-css: ("#help-button .popover", {"display": "none"})
|
||
|
|
||
|
// Now we will check that we cannot have two "pocket menus" displayed at the same time.
|
||
|
click: "#help-button"
|
||
|
assert-css: ("#help-button .popover", {"display": "block"})
|
||
|
click: "#settings-menu"
|
||
|
assert-css: ("#help-button .popover", {"display": "none"})
|
||
|
assert-css: ("#settings-menu .popover", {"display": "block"})
|
||
|
|
||
|
// Now the other way.
|
||
|
click: "#help-button"
|
||
|
assert-css: ("#help-button .popover", {"display": "block"})
|
||
|
assert-css: ("#settings-menu .popover", {"display": "none"})
|
||
|
|
||
|
// We check the borders color now:
|
||
|
|
||
|
// Ayu theme
|
||
|
local-storage: {
|
||
|
"rustdoc-theme": "ayu",
|
||
|
"rustdoc-use-system-theme": "false",
|
||
|
}
|
||
|
reload:
|
||
|
|
||
|
click: "#help-button"
|
||
|
assert-css: (
|
||
|
"#help-button .popover",
|
||
|
{"display": "block", "border-color": "rgb(92, 103, 115)"},
|
||
|
)
|
||
|
compare-elements-css: ("#help-button .popover", "#help-button .top", ["border-color"])
|
||
|
compare-elements-css: ("#help-button .popover", "#help-button .bottom", ["border-color"])
|
||
|
|
||
|
// Dark theme
|
||
|
local-storage: {
|
||
|
"rustdoc-theme": "dark",
|
||
|
"rustdoc-use-system-theme": "false",
|
||
|
}
|
||
|
reload:
|
||
|
|
||
|
click: "#help-button"
|
||
|
assert-css: (
|
||
|
"#help-button .popover",
|
||
|
{"display": "block", "border-color": "rgb(210, 210, 210)"},
|
||
|
)
|
||
|
compare-elements-css: ("#help-button .popover", "#help-button .top", ["border-color"])
|
||
|
compare-elements-css: ("#help-button .popover", "#help-button .bottom", ["border-color"])
|
||
|
|
||
|
// Light theme
|
||
|
local-storage: {
|
||
|
"rustdoc-theme": "light",
|
||
|
"rustdoc-use-system-theme": "false",
|
||
|
}
|
||
|
reload:
|
||
|
|
||
|
click: "#help-button"
|
||
|
assert-css: (
|
||
|
"#help-button .popover",
|
||
|
{"display": "block", "border-color": "rgb(221, 221, 221)"},
|
||
|
)
|
||
|
compare-elements-css: ("#help-button .popover", "#help-button .top", ["border-color"])
|
||
|
compare-elements-css: ("#help-button .popover", "#help-button .bottom", ["border-color"])
|