2022-06-20 16:29:16 +02:00
|
|
|
// This test ensures that the "pocket menus" are working as expected.
|
2022-10-07 20:17:05 +02:00
|
|
|
goto: "file://" + |DOC_PATH| + "/test_docs/index.html"
|
2022-06-20 16:29:16 +02:00
|
|
|
// 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"})
|
|
|
|
|
2022-06-28 14:16:05 -07:00
|
|
|
// Now verify that clicking the help menu again closes it.
|
|
|
|
click: "#help-button"
|
|
|
|
assert-css: ("#help-button .popover", {"display": "none"})
|
|
|
|
assert-css: ("#settings-menu .popover", {"display": "none"})
|
|
|
|
|
2022-06-20 16:29:16 +02:00
|
|
|
// 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",
|
2022-08-13 15:47:19 +02:00
|
|
|
{"display": "block", "border-color": "rgb(224, 224, 224)"},
|
2022-06-20 16:29:16 +02:00
|
|
|
)
|
|
|
|
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",
|
2022-07-03 20:10:19 +02:00
|
|
|
{"display": "block", "border-color": "rgb(224, 224, 224)"},
|
2022-06-20 16:29:16 +02:00
|
|
|
)
|
|
|
|
compare-elements-css: ("#help-button .popover", "#help-button .top", ["border-color"])
|
|
|
|
compare-elements-css: ("#help-button .popover", "#help-button .bottom", ["border-color"])
|