v150 · HTML · Popover API
Tooltip over Menu
In Chrome 150, a popover=hint tooltip can remain visible while a popover=auto dropdown is open. Open a dropdown menu, then hover or focus the icon buttons to see a hint appear above the menu without closing it.
Checking popover support…
Bold (Ctrl+B)
Italic (Ctrl+I)
Insert link (Ctrl+K)
Insert image
top-layer event log
key rules (Chrome 150)
- Opening a
popover=hintdoes not force-dismiss an already-openpopover=auto - Opening a new unrelated
autostill hides an already-openhint - Light-dismiss follows the active top-layer relationship instead of leaving orphaned hints
- A
hintsits above theautostack in the top layer — tooltips are never hidden behind menus
code
<!-- Dropdown (auto) — light-dismisses and closes its stack -->
<button popovertarget="file-menu">File</button>
<div popover="auto" id="file-menu">…</div>
<!-- Tooltip (hint) — can open while an auto is open -->
<button aria-describedby="tip-bold">𝐁</button>
<div popover="hint" id="tip-bold">Bold (Ctrl+B)</div>
<!-- Chrome 150: show the menu first, then show the hint. -->
see also
implementation reference
Need the exact API surface, compatibility boundaries, errors, lifecycle, and source links? Read the matching gendn reference ↗