Time datalist "Other" popup above anchor

#348520442 Filed 2024-06-21 New / P3 / S3 Windows 11 repro target

What this sampler checks

Manual repro

Expected vs actual

This page forces an <input type="time" list="..."> control to the bottom of the viewport so Chromium's suggestion popup opens above the control. Click the popup's Other row.

Live repro

Steps

  1. Click Pin repro input to viewport bottom.
  2. Click Open bottom picker.
  3. In the native suggestion popup, click Other.
  4. On a good build, the full time picker opens. On affected Windows builds, it does not.

Control sample inside the page:

Viewport bottom is the important placement.

Screenshot helper

Static page screenshot

This captured page image does not include the native popup, but it verifies the sampler layout and the bottom-anchored repro controls.

Sampler page screenshot

Optional screen capture

DOM screenshots do not include Chromium's native picker popup. This helper uses the browser's screen-capture prompt, then stores the latest captured frame while you reproduce the issue. Select the whole screen or browser window if the prompt asks what to share.

Latest frame preview:

No captured frame yet

Minimal markup

<input type="time" value="12:00" list="timeOptions"
       style="position: fixed; bottom: 0">
<datalist id="timeOptions">
  <option value="08:00">
  <option value="12:00">
  <option value="17:30">
</datalist>