Implement autofill support (<datalist> HTML5 tag does not work)
Bug #1459808 reported by
Alexandre Abreu
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Oxide |
Triaged
|
Low
|
Unassigned |
Bug Description
e.g.
<!DOCTYPE html>
<html>
<body>
<form action=
<input list="browsers" name="browser">
<datalist id="browsers">
<option value="Internet Explorer">
<option value="Firefox">
<option value="Chrome">
<option value="Opera">
<option value="Safari">
</datalist>
<input type="submit">
</form>
<p><strong>
</body>
</html>
does not display the list w/ the proper items available
To post a comment you must log in.
I've changed the title - I thought there was already a bug open for this. But this is meant to be part of autofill which is a fairly significant project (and I'm not even sure whether we can re-use Chromium's //components/ autofill, seeing as it pulls in a lot of stuff that's not desired)