A text input is associated with a `<datalist>` of suggestions. A user types a value that is NOT in the datalist and submits (no `pattern` or `required`). What happens?
<input list="colors" name="c">
<datalist id="colors">
<option value="Red">
<option value="Green">
</datalist>