Hello,
I have recently noticed that my Datalist HTML tag has stopped work in the chrome extension that I recently started developing. Particularly, it does not display the option value's, but in the html code has the options when I inspect element the chrome extension. I created a web-page with the same Datalist tag method and it worked, so I believe this could be a Google Chrome bug. Can someone please assist with this issue? You can also try it for yourself: Try copying and pasting this code in your google chrome extension:
<label for="browser">Choose your browser from the list:</label>
<input list="browsers" name="browser" id="browser">
<datalist id="browsers">
<option value="Edge">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
</datalist>