rustdoc: hide modals when resizing the sidebar
Follow-up for https://github.com/rust-lang/rust/pull/119477#discussion_r1439085011
This commit is contained in:
parent
0ee9cfd54d
commit
8b52275ee3
@ -1721,6 +1721,7 @@ href="https://doc.rust-lang.org/${channel}/rustdoc/read-documentation/search.htm
|
||||
}
|
||||
currentPointerId = e.pointerId;
|
||||
}
|
||||
window.hideAllModals(false);
|
||||
e.preventDefault();
|
||||
window.addEventListener("pointermove", resize, false);
|
||||
window.addEventListener("pointercancel", stopResize, false);
|
||||
|
20
tests/rustdoc-gui/sidebar-resize-close-popover.goml
Normal file
20
tests/rustdoc-gui/sidebar-resize-close-popover.goml
Normal file
@ -0,0 +1,20 @@
|
||||
// Checks sidebar resizing close the Settings popover
|
||||
go-to: "file://" + |DOC_PATH| + "/test_docs/index.html"
|
||||
assert-property: (".sidebar", {"clientWidth": "200"})
|
||||
show-text: true
|
||||
click: "#settings-menu"
|
||||
wait-for: "#settings"
|
||||
assert-css: ("#settings", {"display": "block"})
|
||||
// normal resizing
|
||||
drag-and-drop: ((205, 100), (185, 100))
|
||||
assert-property: (".sidebar", {"clientWidth": "182"})
|
||||
assert-css: ("#settings", {"display": "none"})
|
||||
|
||||
// Now same thing, but for source code
|
||||
go-to: "file://" + |DOC_PATH| + "/src/test_docs/lib.rs.html"
|
||||
click: "#settings-menu"
|
||||
wait-for: "#settings"
|
||||
assert-css: ("#settings", {"display": "block"})
|
||||
assert-property: (".sidebar", {"clientWidth": "49"})
|
||||
drag-and-drop: ((52, 100), (185, 100))
|
||||
assert-css: ("#settings", {"display": "none"})
|
Loading…
Reference in New Issue
Block a user