[Webkit-unassigned] [Bug 34402] Implement numeric CSS3 list-style-types

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sun Jan 31 19:20:36 PST 2010


https://bugs.webkit.org/show_bug.cgi?id=34402





--- Comment #4 from Daniel Bates <dbates at webkit.org>  2010-01-31 19:20:33 PST ---
(In reply to comment #2)
> 
> > +    if (isAlphabeticSequence)
> > +        while ((number /= sequenceSize) > 0)
> > +            letters[lettersSize - ++length] = sequence[number % sequenceSize - 1];
> > +    else
> > +        while ((number /= sequenceSize) > 0)
> > +            letters[lettersSize - ++length] = sequence[number % sequenceSize];
> 
> We use braces around multi-line blocks in WebKit code, so the two while loops
> should be enclosed in braces.

Will fix.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list