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…
auto: closed
hint: closed
Bold (Ctrl+B)
Italic (Ctrl+I)
Insert image
top-layer event log

key rules (Chrome 150)

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 ↗