HomeSort by relevance Sort by last modified time
    Searched defs:cssValue (Results 1 - 9 of 9) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableUnknownTest.cpp 47 cssValue = CSSArrayFunctionValue::create();
48 animatableUnknown = AnimatableUnknown::create(cssValue);
54 RefPtrWillBePersistent<CSSValue> cssValue;
56 RefPtrWillBePersistent<CSSValue> otherCSSValue;
67 EXPECT_EQ(cssValue, toAnimatableUnknown(animatableUnknown.get())->toCSSValue());
72 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(animatableUnknown.get(), otherAnimatableUnknown.get(), 0).get())->toCSSValue());
73 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(animatableUnknown.get(), otherAnimatableUnknown.get(), 0.4).get())->toCSSValue());
80 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(otherAnimatableUnknown.get(), animatableUnknown.get(), 0.5).get())->toCSSValue());
81 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(otherAnimatableUnknown.get(), animatableUnknown. (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleGeneratedImage.cpp 40 PassRefPtrWillBeRawPtr<CSSValue> StyleGeneratedImage::cssValue() const
StyleFetchedImage.cpp 45 PassRefPtrWillBeRawPtr<CSSValue> StyleFetchedImage::cssValue() const
StyleFetchedImageSet.cpp 50 PassRefPtrWillBeRawPtr<CSSValue> StyleFetchedImageSet::cssValue() const
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
SizesCalcParserTest.cpp 37 RefPtrWillBeRawPtr<CSSValue> cssValue = propertySet->getPropertyCSSValue(CSSPropertyLeft);
38 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(cssValue.get());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
ReferenceFilterBuilder.cpp 87 RefPtrWillBeRawPtr<CSSValue> cssValue = svgElement->presentationAttributeStyle()->getPropertyCSSValue(CSSPropertyColorInterpolationFilters);
88 if (cssValue.get() && cssValue->isPrimitiveValue()) {
89 const CSSPrimitiveValue& primitiveValue = *((CSSPrimitiveValue*)cssValue.get());
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CSSStyleDeclarationCustom.cpp 40 #include "core/css/CSSValue.h"
205 RefPtrWillBeRawPtr<CSSValue> cssValue = impl->getPropertyCSSValueInternal(static_cast<CSSPropertyID>(propInfo->propID));
206 if (cssValue) {
207 v8SetReturnValueStringOrNull(info, cssValue->cssText(), info.GetIsolate());
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp 352 RefPtrWillBeRawPtr<CSSValue> cssValue = styleDeclaration->propertyAt(i).value();
353 retrieveResourcesForCSSValue(cssValue.get(), document);
357 void PageSerializer::retrieveResourcesForCSSValue(CSSValue* cssValue, Document& document)
359 if (cssValue->isImageValue()) {
360 CSSImageValue* imageValue = toCSSImageValue(cssValue);
367 } else if (cssValue->isFontFaceSrcValue()) {
368 CSSFontFaceSrcValue* fontFaceSrcValue = toCSSFontFaceSrcValue(cssValue);
374 } else if (cssValue->isValueList())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 147 static bool isTransparentColorValue(CSSValue*);
150 static PassRefPtrWillBeRawPtr<CSSValue> backgroundColorInEffect(Node*);
202 RefPtrWillBeRawPtr<CSSValue> value = style->getPropertyCSSValue(m_propertyID);
240 RefPtrWillBeRawPtr<CSSValue> styleValue = style->getPropertyCSSValue(CSSPropertyWebkitTextDecorationsInEffect);
261 virtual PassRefPtrWillBeRawPtr<CSSValue> attributeValueAsCSSValue(Element*) const;
286 RefPtrWillBeRawPtr<CSSValue> value = attributeValueAsCSSValue(element);
287 RefPtrWillBeRawPtr<CSSValue> styleValue = style->getPropertyCSSValue(m_propertyID);
294 if (RefPtrWillBeRawPtr<CSSValue> value = attributeValueAsCSSValue(element))
298 PassRefPtrWillBeRawPtr<CSSValue> HTMLAttributeEquivalent::attributeValueAsCSSValue(Element* element) const
317 virtual PassRefPtrWillBeRawPtr<CSSValue> attributeValueAsCSSValue(Element*) const OVERRIDE
    [all...]

Completed in 679 milliseconds