You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clicking a native <select> dropdown inside a browser extension popup freezes the entire popup (and sometimes the browser). The popup becomes completely unresponsive — no clicks, no interactions, nothing.
This does not happen in Firefox or Waterfox with the same extension.
Description
Clicking a native
<select>dropdown inside a browser extension popup freezes the entire popup (and sometimes the browser). The popup becomes completely unresponsive — no clicks, no interactions, nothing.This does not happen in Firefox or Waterfox with the same extension.
Steps to Reproduce
about:debugging#/runtime/this-firefoxmanifest.json<select>dropdownExpected: The dropdown opens and you can select an option.
Actual: The popup freezes immediately when clicking the
<select>.Zen.Select.Bug.-.Zen.mp4
Zen.Select.Bug.-.Waterfox.mp4
Minimal Repro Code
The extension is just 3 files — no frameworks, no dependencies:
manifest.json
{ "manifest_version": 2, "name": "Zen Select Bug Repro", "version": "1.0", "description": "Minimal repro: native <select> in extension popup freezes Zen browser", "browser_action": { "default_popup": "popup.html", "default_title": "Select Bug Repro" } }popup.html
popup.js
Environment