- From: <bugzilla@jessica.w3.org>
- Date: Fri, 11 Mar 2016 20:29:50 +0000
- To: public-qt-comments@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=29488
--- Comment #12 from Josh Spiegel <josh.spiegel@oracle.com> ---
I just added the test.
<test-case name="format-integer-072">...
<test>format-integer(123456789, '000,00,00')</test>
<result>
<assert-eq>'12345,67,89'</assert-eq>
</result>
</test-case>
Here is what the specification says:
"If grouping-separator-signs appear at regular intervals within the format
token, that is if the same grouping separator appears at positions forming a
sequence N, 2N, 3N, ... for some integer value N (including the case where
there is only one number in the list), then the sequence is extrapolated to the
left.."
My analysis is:
N=3.
At position N (3) = ,
At position 2N (6) = ,
At position 3N (9) = 3
So no pattern...
Did I miss something?
--
You are receiving this mail because:
You are the QA Contact for the bug.
Received on Friday, 11 March 2016 20:29:54 UTC