[Webkit-unassigned] [Bug 11442] [CSS 3] support for cursor: all-scroll

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Tue Oct 31 16:31:35 PST 2006


http://bugs.webkit.org/show_bug.cgi?id=11442





------- Comment #4 from ddkilzer at kilzer.net  2006-10-31 16:31 PDT -------
(From update of attachment 11265)
>Index: WebCore/css/CSSComputedStyleDeclaration.cpp
>===================================================================
>--- WebCore/css/CSSComputedStyleDeclaration.cpp	(revision 17395)
>+++ WebCore/css/CSSComputedStyleDeclaration.cpp	(working copy)
>@@ -680,6 +680,9 @@ PassRefPtr<CSSValue> CSSComputedStyleDec
>                 break;
>             case CURSOR_HELP:
>                 value = new CSSPrimitiveValue(CSS_VAL_HELP);
>+            case CURSOR_ALL_SCROLL:
>+                value = new CSSPrimitiveValue(CSS_VAL_ALL_SCROLL);
>+                break;
>         }
>         ASSERT(value);
>         if (list) {

I believe there is a missing "break;" statement after "case CURSOR_HELP:" now. 
Patch forthcoming.


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



More information about the webkit-unassigned mailing list