iOS Safari 26 select dismiss issue

We are seeing an issue in Safari on iOS 26 where the a automatic unfocus of on select box dismisses the second one.

<select name="choice1" onblur="console.log('onblur1');" onfocus="console.log('onfocus1');">
  <option value="first">First Value</option>
  <option value="second" selected>Second Value</option>
  <option value="third">Third Value</option>
</select>

<select name="choice2" onblur="console.log('onblur2');" onfocus="console.log('onfocus2')">
  <option value="first">First Value</option>
  <option value="second" selected>Second Value</option>
  <option value="third">Third Value</option>
</select>

select something in choice1. quickly tap choice2 before onblur1 is logged. At the timing of onblur1 the selection menu for choice2 is dismissed.

Anyone know how to fix this behavior?

Our engineering teams need to investigate this issue, as resolution may involve changes to Apple's software. Please file a bug report, include a small Xcode project and some directions that can be used to reproduce the problem, and post the Feedback number here once you do. If you post the Feedback number here I'll check the status next time I do a sweep of forums posts where I've suggested bug reports.

Bug Reporting: How and Why? has tips on creating your bug report.

iOS Safari 26 select dismiss issue
 
 
Q