diff options
author | Russell Brenner <russellbrenner@google.com> | 2010-11-18 17:33:13 -0800 |
---|---|---|
committer | Russell Brenner <russellbrenner@google.com> | 2010-12-02 13:47:21 -0800 |
commit | 6b70adc33054f8aee8c54d0f460458a9df11b8a5 (patch) | |
tree | 103a13998c33944d6ab3b8318c509a037e639460 /WebCore/css/CSSValue.h | |
parent | bdf4ebc8e70b2d221b6ee7a65660918ecb1d33aa (diff) | |
download | external_webkit-6b70adc33054f8aee8c54d0f460458a9df11b8a5.zip external_webkit-6b70adc33054f8aee8c54d0f460458a9df11b8a5.tar.gz external_webkit-6b70adc33054f8aee8c54d0f460458a9df11b8a5.tar.bz2 |
Merge WebKit at r72274: Initial merge by git.
Change-Id: Ie51f0b4a16da82942bd516dce59cfb79ebbe25fb
Diffstat (limited to 'WebCore/css/CSSValue.h')
-rw-r--r-- | WebCore/css/CSSValue.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/WebCore/css/CSSValue.h b/WebCore/css/CSSValue.h index 0bd6496..ec1b15e 100644 --- a/WebCore/css/CSSValue.h +++ b/WebCore/css/CSSValue.h @@ -53,11 +53,16 @@ public: virtual String cssText() const = 0; void setCssText(const String&, ExceptionCode&) { } // FIXME: Not implemented. + virtual bool isBorderImageValue() const { return false; } + virtual bool isCursorImageValue() const { return false; } + virtual bool isFontFamilyValue() const { return false; } virtual bool isFontValue() const { return false; } virtual bool isImageGeneratorValue() const { return false; } virtual bool isImageValue() const { return false; } virtual bool isImplicitInitialValue() const { return false; } virtual bool isPrimitiveValue() const { return false; } + virtual bool isReflectValue() const { return false; } + virtual bool isShadowValue() const { return false; } virtual bool isTimingFunctionValue() const { return false; } virtual bool isValueList() const { return false; } virtual bool isWebKitCSSTransformValue() const { return false; } @@ -67,7 +72,6 @@ public: virtual bool isSVGPaint() const { return false; } #endif - virtual bool isVariableDependentValue() const { return false; } virtual CSSParserValue parserValue() const { ASSERT_NOT_REACHED(); return CSSParserValue(); } virtual void addSubresourceStyleURLs(ListHashSet<KURL>&, const CSSStyleSheet*) { } |