Reviewed by Mitz.
Added missing "break;" statement in switch statement from r17493.
Bug 11442: [CSS 3] support for cursor: all-scroll
http://bugs.webkit.org/show_bug.cgi?id=11442
* css/CSSComputedStyleDeclaration.cpp:
(WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@17516
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2006-11-01 David Kilzer <ddkilzer@kilzer.net>
+
+ Reviewed by Mitz.
+
+ Added missing "break;" statement in switch statement from r17493.
+
+ Bug 11442: [CSS 3] support for cursor: all-scroll
+ http://bugs.webkit.org/show_bug.cgi?id=11442
+
+ * css/CSSComputedStyleDeclaration.cpp:
+ (WebCore::CSSComputedStyleDeclaration::getPropertyCSSValue):
+
2006-10-31 Mitz Pettel <mitz@webkit.org>
Reviewed by Maciej.
break;
case CURSOR_HELP:
value = new CSSPrimitiveValue(CSS_VAL_HELP);
+ break;
case CURSOR_ALL_SCROLL:
value = new CSSPrimitiveValue(CSS_VAL_ALL_SCROLL);
break;