Skip to content
Snippets Groups Projects
Commit 54fac0dc authored by Tom Schuster's avatar Tom Schuster
Browse files

Bug 1907032 - Don't show the select picker in active tabs. r=emilio a=RyanVM

parent 56434f6a
No related branches found
No related tags found
No related merge requests found
......@@ -216,6 +216,11 @@ void HTMLSelectElement::ShowPicker(ErrorResult& aRv) {
return;
}
#endif
if (!IsInActiveTab(OwnerDoc())) {
return;
}
if (!OpenInParentProcess()) {
RefPtr<Document> doc = OwnerDoc();
nsContentUtils::DispatchChromeEvent(doc, this, u"mozshowdropdown"_ns,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment