Reviewed by John Sullivan.
Remove a little dead code left over after the fix for
https://bugs.webkit.org/show_bug.cgi?id=11395, which
moved pointer-events from SVG to be shared with HTML.
* css/SVGCSSParser.cpp:
(WebCore::CSSParser::parseSVGValue): Remove SVG's parsing of this
property since it's handled in the non-SVG function now so we'll
never get here.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@40070
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2009-01-20 Darin Adler <darin@apple.com>
+
+ Reviewed by John Sullivan.
+
+ Remove a little dead code left over after the fix for
+ https://bugs.webkit.org/show_bug.cgi?id=11395, which
+ moved pointer-events from SVG to be shared with HTML.
+
+ * css/SVGCSSParser.cpp:
+ (WebCore::CSSParser::parseSVGValue): Remove SVG's parsing of this
+ property since it's handled in the non-SVG function now so we'll
+ never get here.
+
2009-01-20 Julien Chaffraix <jchaffraix@webkit.org>
Reviewed by Darin Adler.
* correctly and allows optimization in applyRule(..)
*/
- case CSSPropertyPointerEvents:
- // none | visiblePainted | visibleFill | visibleStroke | visible |
- // painted | fill | stroke | none | all | inherit
- if (id == CSSValueVisible || id == CSSValueNone || id == CSSValueAll ||
- (id >= CSSValueVisiblepainted && id <= CSSValueStroke))
- valid_primitive = true;
- break;
-
case CSSPropertyTextAnchor: // start | middle | end | inherit
if (id == CSSValueStart || id == CSSValueMiddle || id == CSSValueEnd)
valid_primitive = true;