Open
Bug 1334045
Opened 8 years ago
Updated 2 years ago
[Form Autofill] Transform the raw data from the profile storage to fit other autocomplete attributes
Categories
(Toolkit :: Form Autofill, defect, P3)
Toolkit
Form Autofill
Tracking
()
NEW
People
(Reporter: lchang, Unassigned)
References
(Depends on 1 open bug, Blocks 1 open bug)
Details
(Whiteboard: [form autofill])
There are some @autocomplete attributes not storing in the profiles. We should come up with a method to transform raw data to those fields, such as "country-name", "address-line1", etc.
Comment 1•8 years ago
|
||
Code to get the list of countries and country codes:
> var countries = Services.strings.createBundle("chrome://global/locale/regionNames.properties").getSimpleEnumeration()
> while (countries.hasMoreElements()) {
> console.log(countries.getNext().QueryInterface(Components.interfaces.nsIPropertyElement))
> }
Whiteboard: [form autofill:MVP] → [form autofill:M2]
Reporter | ||
Updated•8 years ago
|
Assignee: nobody → lchang
Reporter | ||
Comment 2•8 years ago
|
||
I broke down this bug into Bug 1358943 and bug 1358944. Let's track the status there and remove this bug from M2 list.
Whiteboard: [form autofill:M2] → [form autofill]
Updated•7 years ago
|
Component: Form Manager → Form Autofill
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•