Searched refs:cssValue (Results 1 - 11 of 11) sorted by relevance

/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8WebKitCSSMatrixConstructor.cpp56 String cssValue;
58 cssValue = toWebCoreString(args[0]);
61 RefPtr<WebKitCSSMatrix> matrix = WebKitCSSMatrix::create(cssValue, ec);
H A DV8CSSStyleDeclarationCustom.cpp171 RefPtr<CSSValue> cssValue = imp->getPropertyCSSValue(propInfo->propID);
172 if (cssValue) {
174 cssValue->cssValueType() == CSSValue::CSS_PRIMITIVE_VALUE) {
176 cssValue.get())->getFloatValue(CSSPrimitiveValue::CSS_PX));
178 return v8StringOrNull(cssValue->cssText());
/external/webkit/Source/WebCore/rendering/style/
H A DStyleCachedImage.cpp32 PassRefPtr<CSSValue> StyleCachedImage::cssValue() const function in class:WebCore::StyleCachedImage
H A DStyleCachedImage.h41 virtual PassRefPtr<CSSValue> cssValue() const;
H A DStyleGeneratedImage.cpp32 PassRefPtr<CSSValue> StyleGeneratedImage::cssValue() const function in class:WebCore::StyleGeneratedImage
H A DStyleGeneratedImage.h45 virtual PassRefPtr<CSSValue> cssValue() const;
H A DStylePendingImage.h46 virtual PassRefPtr<CSSValue> cssValue() const { return m_value; } function in class:WebCore::StylePendingImage
H A DStyleImage.h50 virtual PassRefPtr<CSSValue> cssValue() const = 0;
/external/webkit/Source/WebCore/css/
H A DCSSComputedStyleDeclaration.cpp322 imageValue = image.image()->cssValue();
772 list->append(image->cssValue());
849 return layers->image()->cssValue();
857 list->append(currLayer->image()->cssValue());
1085 list->append(image->cssValue());
1198 return style->listStyleImage()->cssValue();
H A DCSSParser.cpp2085 static bool parseBackgroundClip(CSSParserValue* parserValue, RefPtr<CSSValue>& cssValue, CSSPrimitiveValueCache* primitiveValueCache) argument
2089 cssValue = primitiveValueCache->createIdentifierValue(parserValue->id);
/external/webkit/Source/WebCore/editing/
H A DEditor.cpp921 RefPtr<CSSValue> cssValue = style->getPropertyCSSValue(CSSPropertyBackgroundColor); local
922 if (!cssValue)
925 if (!cssValue->isPrimitiveValue())
927 CSSPrimitiveValue* value = static_cast<CSSPrimitiveValue*>(cssValue.get());
957 RefPtr<CSSValue> cssValue = selectionStyle->style()->getPropertyCSSValue(CSSPropertyFontSize); local
958 if (cssValue->isPrimitiveValue()) {
959 value = String::number(legacyFontSizeFromCSSValue(m_frame->document(), static_cast<CSSPrimitiveValue*>(cssValue.get()),

Completed in 185 milliseconds