Closed Bug 844744 Opened 11 years ago Closed 10 years ago

Make <input type=number> use ICU when available to support localized number input

Categories

(Core :: DOM: Core & HTML, defect)

defect
Not set
normal

Tracking

()

VERIFIED FIXED
mozilla29
Tracking Status
firefox20 --- affected
firefox21 --- affected
firefox22 --- affected
fennec + ---

People

(Reporter: antonboonstra, Assigned: jwatt)

References

()

Details

(Keywords: dev-doc-needed, testcase)

Attachments

(2 files)

User Agent: Mozilla/5.0 (Windows NT 5.1; rv:19.0) Gecko/20100101 Firefox/19.0
Build ID: 20130215130331

Steps to reproduce:

I tried to enter a number with a comma in a form, with the type "number".


Actual results:

No value or the value 0 was sent.


Expected results:

The value entered in the form should have been sent.

When I enter a number with a decimal point in stead of a comma, the browser returns "Selecteer een geldige waarde" (Dutch for "Select a valid value")
OS: Windows XP → Android
Hardware: x86 → ARM
Can you try out Nightly (http://nightly.mozilla.org) and report back here if that works out for you? Also, which Android device and keyboard are you using?
Component: General → Keyboards and IME
Android device = Samsung Galaxy S (GT-I9000)
Android version = 4.0.4 (CyanongenMod 9.1.0-galaxysmtd)
Keyboard = standard keyboard of Cyanogenmod
Great... installed the Nightly version, but when I started Firefox nightly, it crashed because my phone was out of memory. And now I can't even restart my phone. Thanx... :(
Sorry to hear that. If you can get your phone into a stable state and are able to reproduce on perhaps any newer version channel we'd appreciate if you are able to narrow down some steps to reproduce.
Status: UNCONFIRMED → RESOLVED
Closed: 11 years ago
Resolution: --- → INCOMPLETE
I'm not going to install another nightly version. But you can try it yourself. I made a test form, which echo's the outputs of the form: http://dump.antonboonstra.nl/test-form.php

The input with the type "number" is correctly sent with Firefox for Windows and the standard browser in Android, but not with Firefox 19 for Android (dutch version).
Status: RESOLVED → REOPENED
Ever confirmed: true
Keywords: testcase
Resolution: INCOMPLETE → ---
I'm using Dutch version of Android on Galaxy Nexus.
With the stock browser, I can enter numers like '123.5' and it gets submitted in the results.
When I enter '123,5', before submission, the text input value is changed into '123' and then gets submitted.

On Fennec trunk, entering '123,5' empties the whole text input and then it gets submitted.
Enter '123.5' gives the 'select a valid value' popup.
tracking-fennec: --- → ?
This might have been changed by bug 765772.
(In reply to Martijn Wargers [:mw22] (QA - IRC nick: mw22) from comment #7)
> This might have been changed by bug 765772.

So this bug seems fixed?
No, I meant that this bug might have been caused by that bug.
I was expecting the virtual keyboard to allow commas when the locale allow commas. Isn't that the case? Then, we should make sure that the number that the Android code sends to the HTMLInputElement is following the HTML5 specification (ie. it should use a dot (.) instead of a comma).
The stock browser of CM9.1 doesn't even accept a comma if you try to enter it. Only a decimal point which is submitted correctly.

In Firefox you can enter a comma and you can even submit the form, but the submitted value is empty. You can also enter a decimal point, but you can't submit the form, because of the 'select a valid value' pop-up.
(In reply to Mounir Lamouri (:mounir) from comment #10)
> I was expecting the virtual keyboard to allow commas when the locale allow
> commas. Isn't that the case? Then, we should make sure that the number that
> the Android code sends to the HTMLInputElement is following the HTML5
> specification (ie. it should use a dot (.) instead of a comma).

The stock keyboard on Android allows commas in number mode regardless of locale.

My opinion is that Gecko should parse the user input according to locale into a format that matches the HTML5 spec. Or at least not empty the input when the value is invalid.

Parsing the input in the Android code is more difficult because the Android code does not send the number to Gecko all at once; instead it sends each digit to Gecko as it's received from the keyboard.
(In reply to Jim Chen [:jchen :nchen] from comment #12)
> My opinion is that Gecko should parse the user input according to locale
> into a format that matches the HTML5 spec. Or at least not empty the input
> when the value is invalid.

This behaviour would require solving bug 805049.
Assignee: nobody → nchen
tracking-fennec: ? → +
Assignee: nchen → jwatt
Blocks: 679220
Component: Keyboards and IME → DOM: Core & HTML
OS: Android → All
Product: Firefox for Android → Core
Hardware: ARM → All
Summary: Form input type number doesn't accept comma numbers → Make <input type=number> use ICU when available to support localized number input
Version: Firefox 19 → Trunk
Depends on: 960505
Comment on attachment 8367797 [details] [diff] [review]
part 1 - Add some ICU utils classes and static methods

Review of attachment 8367797 [details] [diff] [review]:
-----------------------------------------------------------------

r=me with a couple of nits fixed:

::: intl/unicharutil/util/ICUUtils.cpp
@@ +80,5 @@
> +
> +  Locale locale;
> +  locale.setToBogus();
> +
> +  NS_LossyConvertUTF16toASCII bcp47code(aBCP47Code);

LossyConvert is fine, because BCP47 codes are guaranteed to be ASCII, but please add a comment to that effect.

@@ +127,5 @@
> +                         ContentLocaleIter& aLocaleIter,
> +                         nsAString& aLocalizedValue)
> +{
> +  UErrorCode status = U_ZERO_ERROR;
> +  Locale locale = aLocaleIter.GetNext();

Please assert here and in ParseNumber that aLocaleIter is uninitialized
Attachment #8367797 - Flags: review?(smontagu) → review+
Attachment #8367798 - Flags: review?(bugs) → review+
https://hg.mozilla.org/integration/mozilla-inbound/rev/340786b6f4dd
https://hg.mozilla.org/integration/mozilla-inbound/rev/2682af062a4b

Simon, I had a huge headache trying to figure out linker errors on the Linux ASAN machine. Amongst other things I set up an ASAN build on my Mac and couldn't repro, set up and ASAN build on Linux, tried various configs and still couldn't repro, and tried every suggestion the build peers came up with in #build and more. All to no avail. I just couldn't get that machine to link to ICU C++ symbols. Besides this issue, it turns out using the ICU C++ API would break --with-system-icu anyway. For both these reasons I switched from the C++ API to the C API before landing. You may want to take a look oven the commit as landed.
Flags: needinfo?(smontagu)
Oh, and I added a pref to allow the l18n people to configure our localized builds to decide whether or not they want <input type=number> to use grouping (thousands) separators.
https://hg.mozilla.org/mozilla-central/rev/340786b6f4dd
https://hg.mozilla.org/mozilla-central/rev/2682af062a4b
Status: REOPENED → RESOLVED
Closed: 11 years ago10 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla29
If I understand well, this allows to type arabic, persian, japanese numbers in <input type=number>. This is a pretty important change and I think it should be relnoted. What's your opinion :jwatt? (Relnote meeting is tomorrow)
relnote-firefox: --- → ?
Flags: needinfo?(jwatt)
Keywords: dev-doc-needed
This will release at the same time as the support for <input type=number>, so I'd think it should just be mentioned as part of that item in the relnotes.
Flags: needinfo?(jwatt)
:jwatt : seems logical, thx
relnote-firefox: ? → ---
Thanks for the headsup, that should be fine.
Flags: needinfo?(smontagu)
Blocks: 969928
Depends on: 974175
Keywords: verifyme
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0

On latest Dutch Aurora version (20140305004002) neither comma nor decimal point are allowed in the field (it's highlighted and a message is displayed).

Do I need to make other system changes in order to verify that this bug is fixed? Thank you
petruta, I can't reproduce. Are you seeing this because the number control you're using doesn't have the 'step' attribute set? (What are you using to test?) What if you try this:

data:text/html,<input type=number lang=nl step=any>
Flags: needinfo?(petruta.rasa)
Hi Jonathan, sorry for late answer.

I used the link provided in URL (http://dump.antonboonstra.nl/test-form.php) where 'step' attribute is not set.

Using "data:text/html,<input type=number lang=nl step=any>" in the Dutch Aurora version, it seems that "." is replaced by "," and the arrows work as expected.
Flags: needinfo?(petruta.rasa)
The default step is 1, so fractional values are not allowed by default. Thus the behavior that you were seeing on that page is as expected.
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:29.0) Gecko/20100101 Firefox/29.0

Verified as fixed on latest Aurora 29.0a2 (20140312004002), in Dutch builds "." is replaced by "," in input type number fields.
Status: RESOLVED → VERIFIED
Keywords: verifyme
QA Contact: petruta.rasa
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: