Datalist is not showing dropdown once the option item is over 14

Copper Contributor

Hi, there

I recently noticed that datalist is not showing the dropdown once the number of option item is over 14

is this intended change or just a bug of new release

1 Reply

Same problem.  Just put this into a html and open in a Edge Chromium 91,92 or 93...  15 items works fine.  16+ items and dropdown will not open.  Major break or issue.  

 

<label for="ice-cream-choice">Choose a flavor:</label>
<input list="ice-cream-flavors" id="ice-cream-choice" name="ice-cream-choice" />

<datalist id="ice-cream-flavors">
<option value="Chocolate">
<option value="Coconut">
<option value="Mint">
<option value="Strawberry">
<option value="Vanilla">
<option value="Chocolate">
<option value="Coconut">
<option value="Mint">
<option value="Strawberry">
<option value="Vanilla">
<option value="Chocolate">
<option value="Coconut">
<option value="Mint">
<option value="Strawberry">
</datalist>