Home
last modified time | relevance | path

Searched refs:cssValue (Results 1 – 13 of 13) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/custom/
DV8WebKitCSSMatrixConstructor.cpp56 String cssValue; in constructorCallback() local
58 cssValue = toWebCoreString(args[0]); in constructorCallback()
61 RefPtr<WebKitCSSMatrix> matrix = WebKitCSSMatrix::create(cssValue, ec); in constructorCallback()
DV8CSSStyleDeclarationCustom.cpp171 RefPtr<CSSValue> cssValue = imp->getPropertyCSSValue(propInfo->propID); in namedPropertyGetter() local
172 if (cssValue) { in namedPropertyGetter()
174 cssValue->cssValueType() == CSSValue::CSS_PRIMITIVE_VALUE) { in namedPropertyGetter()
176 cssValue.get())->getFloatValue(CSSPrimitiveValue::CSS_PX)); in namedPropertyGetter()
178 return v8StringOrNull(cssValue->cssText()); in namedPropertyGetter()
/external/webkit/Source/WebCore/rendering/style/
DStylePendingImage.h46 virtual PassRefPtr<CSSValue> cssValue() const { return m_value; } in cssValue() function
DStyleGeneratedImage.cpp32 PassRefPtr<CSSValue> StyleGeneratedImage::cssValue() const in cssValue() function in WebCore::StyleGeneratedImage
DStyleCachedImage.cpp32 PassRefPtr<CSSValue> StyleCachedImage::cssValue() const in cssValue() function in WebCore::StyleCachedImage
DStyleGeneratedImage.h45 virtual PassRefPtr<CSSValue> cssValue() const;
DStyleCachedImage.h41 virtual PassRefPtr<CSSValue> cssValue() const;
DStyleImage.h50 virtual PassRefPtr<CSSValue> cssValue() const = 0;
/external/webkit/Source/WebCore/css/
DCSSComputedStyleDeclaration.cpp334 imageValue = image.image()->cssValue(); in valueForNinePieceImage()
784 list->append(image->cssValue()); in contentToCSSValue()
861 return layers->image()->cssValue(); in getPropertyCSSValue()
869 list->append(currLayer->image()->cssValue()); in getPropertyCSSValue()
1097 list->append(image->cssValue()); in getPropertyCSSValue()
1210 return style->listStyleImage()->cssValue(); in getPropertyCSSValue()
DCSSParser.cpp2170 static bool parseBackgroundClip(CSSParserValue* parserValue, RefPtr<CSSValue>& cssValue, CSSPrimiti… in parseBackgroundClip() argument
2174 cssValue = primitiveValueCache->createIdentifierValue(parserValue->id); in parseBackgroundClip()
/external/webkit/Source/WebCore/editing/
DEditor.cpp921 RefPtr<CSSValue> cssValue = style->getPropertyCSSValue(CSSPropertyBackgroundColor); in hasTransparentBackgroundColor() local
922 if (!cssValue) in hasTransparentBackgroundColor()
925 if (!cssValue->isPrimitiveValue()) in hasTransparentBackgroundColor()
927 CSSPrimitiveValue* value = static_cast<CSSPrimitiveValue*>(cssValue.get()); in hasTransparentBackgroundColor()
957 … RefPtr<CSSValue> cssValue = selectionStyle->style()->getPropertyCSSValue(CSSPropertyFontSize); in selectionStartCSSPropertyValue() local
958 if (cssValue->isPrimitiveValue()) { in selectionStartCSSPropertyValue()
959 …er(legacyFontSizeFromCSSValue(m_frame->document(), static_cast<CSSPrimitiveValue*>(cssValue.get()), in selectionStartCSSPropertyValue()
/external/webkit/Source/WebCore/
DChangeLog-2008-08-1011355 (WebCore::StyleCachedImage::cssValue):
32407 (WebCore::StyleCachedImage::cssValue):
32414 (WebCore::StyleGeneratedImage::cssValue):
DChangeLog-2010-12-0669976 * rendering/style/StyleCachedImage.h: Make cssValue() const.
69978 (WebCore::StyleCachedImage::cssValue):
69980 * rendering/style/StyleGeneratedImage.h: Make cssValue() const.
69982 (WebCore::StyleGeneratedImage::cssValue):