[Webkit-unassigned] [Bug 46875] Web Inspector: content: counter displays decimal number instead of name

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Oct 9 04:34:48 PDT 2010


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





--- Comment #1 from Joseph Pecoraro <joepeck at webkit.org>  2010-10-09 04:34:47 PST ---
The cssText implementation of CSS_COUNTER was missing:
http://trac.webkit.org/browser/trunk/WebCore/css/CSSPrimitiveValue.cpp#L714

> 714    case CSS_COUNTER:
> 715        text = "counter(";
> 716        text += String::number(m_value.num);
> 717        text += ")";
> 718        // FIXME: Add list-style and separator
> 719        break;

I have a patch to fix this, I will put it up in a moment after running tests.

-- 
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