2022-06-20 14:29:16 +00:00
|
|
|
// This test ensures that the "pocket menus" are working as expected.
|
2023-04-11 17:11:34 +00:00
|
|
|
go-to: "file://" + |DOC_PATH| + "/test_docs/index.html"
|
2022-06-20 14:29:16 +00: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 21:16:05 +00: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 14:29:16 +00:00
|
|
|
// We check the borders color now:
|
|
|
|
|
|
|
|
// Ayu theme
|
2023-04-11 17:11:34 +00:00
|
|
|
set-local-storage: {
|
2022-06-20 14:29:16 +00:00
|
|
|
"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
|
2023-04-11 17:11:34 +00:00
|
|
|
set-local-storage: {
|
2022-06-20 14:29:16 +00:00
|
|
|
"rustdoc-theme": "dark",
|
|
|
|
"rustdoc-use-system-theme": "false",
|
|
|
|
}
|
|
|
|
reload:
|
|
|
|
|
|
|
|
click: "#help-button"
|
|
|
|
assert-css: (
|
|
|
|
"#help-button .popover",
|
2022-08-13 13:47:19 +00:00
|
|
|
{"display": "block", "border-color": "rgb(224, 224, 224)"},
|
2022-06-20 14:29:16 +00: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
|
2023-04-11 17:11:34 +00:00
|
|
|
set-local-storage: {
|
2022-06-20 14:29:16 +00:00
|
|
|
"rustdoc-theme": "light",
|
|
|
|
"rustdoc-use-system-theme": "false",
|
|
|
|
}
|
|
|
|
reload:
|
|
|
|
|
|
|
|
click: "#help-button"
|
|
|
|
assert-css: (
|
|
|
|
"#help-button .popover",
|
2022-07-03 18:10:19 +00:00
|
|
|
{"display": "block", "border-color": "rgb(224, 224, 224)"},
|
2022-06-20 14:29:16 +00:00
|
|
|
)
|
|
|
|
compare-elements-css: ("#help-button .popover", "#help-button .top", ["border-color"])
|
|
|
|
compare-elements-css: ("#help-button .popover", "#help-button .bottom", ["border-color"])
|
rustdoc: improve popover focus handling JS
This commit fixes a few inconsistencies and erratic behavior from the
notable traits, settings, and sidebar popups:
* It makes it so that pressing Escape closes the mobile sidebar.
This is a bit difficult to do on iPhone, but on other setups like
desktop tiling window managers, it's easy and makes sense.
* It makes sure that pressing escape while a notable trait popover is
open focuses the popover's toggle button, instead of leaving nothing
focused, since that makes more sense with keyboard navigation. Clicking
the settings, help, or sidebar buttons, however, will not focus the
notable trait popover toggle button.
* It ensures that notable trait and settings popovers are exclusive
with the mobile sidebar. Nothing should ever overlap a popover, and
there should never be more than one popover open at once.
2022-11-26 16:52:58 +00:00
|
|
|
|
|
|
|
// Opening the mobile sidebar should close the settings popover.
|
2023-04-11 17:11:34 +00:00
|
|
|
set-window-size: (650, 600)
|
rustdoc: improve popover focus handling JS
This commit fixes a few inconsistencies and erratic behavior from the
notable traits, settings, and sidebar popups:
* It makes it so that pressing Escape closes the mobile sidebar.
This is a bit difficult to do on iPhone, but on other setups like
desktop tiling window managers, it's easy and makes sense.
* It makes sure that pressing escape while a notable trait popover is
open focuses the popover's toggle button, instead of leaving nothing
focused, since that makes more sense with keyboard navigation. Clicking
the settings, help, or sidebar buttons, however, will not focus the
notable trait popover toggle button.
* It ensures that notable trait and settings popovers are exclusive
with the mobile sidebar. Nothing should ever overlap a popover, and
there should never be more than one popover open at once.
2022-11-26 16:52:58 +00:00
|
|
|
click: "#settings-menu a"
|
|
|
|
assert-css: ("#settings-menu .popover", {"display": "block"})
|
|
|
|
click: ".sidebar-menu-toggle"
|
|
|
|
assert: "//*[@class='sidebar shown']"
|
|
|
|
assert-css: ("#settings-menu .popover", {"display": "none"})
|
|
|
|
// Opening the settings popover should close the sidebar.
|
|
|
|
click: "#settings-menu a"
|
|
|
|
assert-css: ("#settings-menu .popover", {"display": "block"})
|
|
|
|
assert-false: "//*[@class='sidebar shown']"
|
|
|
|
|
|
|
|
// Opening the settings popover at start (which async loads stuff) should also close.
|
|
|
|
reload:
|
|
|
|
click: ".sidebar-menu-toggle"
|
|
|
|
assert: "//*[@class='sidebar shown']"
|
|
|
|
assert-false: "#settings-menu .popover"
|
|
|
|
click: "#settings-menu a"
|
|
|
|
assert-false: "//*[@class='sidebar shown']"
|
|
|
|
wait-for: "#settings-menu .popover"
|