diff options
author | Cary Clark <cary@android.com> | 2010-07-30 16:01:44 -0400 |
---|---|---|
committer | Cary Clark <cary@android.com> | 2010-07-30 16:01:44 -0400 |
commit | d75bcc669055079552dc46eada1f5a003cd5d1fe (patch) | |
tree | d01b1a7a534c06e6a387213630252da01fc0df2f /WebCore/css/CSSParser.cpp | |
parent | 0ed6485271097ecf1b4cf4e790f9cfdbb57d921c (diff) | |
download | external_webkit-d75bcc669055079552dc46eada1f5a003cd5d1fe.zip external_webkit-d75bcc669055079552dc46eada1f5a003cd5d1fe.tar.gz external_webkit-d75bcc669055079552dc46eada1f5a003cd5d1fe.tar.bz2 |
Revert "Add CSS cursor ring definitions"
This reverts commit 0ed6485271097ecf1b4cf4e790f9cfdbb57d921c.
Diffstat (limited to 'WebCore/css/CSSParser.cpp')
-rw-r--r-- | WebCore/css/CSSParser.cpp | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/WebCore/css/CSSParser.cpp b/WebCore/css/CSSParser.cpp index 0cc935f..6bf7751 100644 --- a/WebCore/css/CSSParser.cpp +++ b/WebCore/css/CSSParser.cpp @@ -1811,36 +1811,6 @@ bool CSSParser::parseValue(int propId, bool important) break; #endif -#ifdef ANDROID_CSS_RING - case CSSPropertyWebkitRing: - { - const int properties[9] = { CSSPropertyWebkitRingFillColor, - CSSPropertyWebkitRingInnerWidth, - CSSPropertyWebkitRingOuterWidth, - CSSPropertyWebkitRingOutset, - CSSPropertyWebkitRingPressedInnerColor, - CSSPropertyWebkitRingPressedOuterColor, - CSSPropertyWebkitRingRadius, - CSSPropertyWebkitRingSelectedInnerColor, - CSSPropertyWebkitRingSelectedOuterColor }; - return parseShorthand(propId, properties, 9, important); - } - case CSSPropertyWebkitRingFillColor: - case CSSPropertyWebkitRingPressedInnerColor: - case CSSPropertyWebkitRingPressedOuterColor: - case CSSPropertyWebkitRingSelectedInnerColor: - case CSSPropertyWebkitRingSelectedOuterColor: - parsedValue = parseColor(); - if (parsedValue) - m_valueList->next(); - break; - case CSSPropertyWebkitRingInnerWidth: - case CSSPropertyWebkitRingOuterWidth: - case CSSPropertyWebkitRingOutset: - case CSSPropertyWebkitRingRadius: - validPrimitive = validUnit(value, FLength | FNonNeg, m_strict); - break; -#endif #ifdef ANDROID_CSS_TAP_HIGHLIGHT_COLOR case CSSPropertyWebkitTapHighlightColor: parsedValue = parseColor(); |