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/animatable/
AnimatableUnknownTest.cpp 47 cssValue = cssValuePool().createIdentifierValue(CSSValueYellow);
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 = CSSParser::parseSingleValue(CSSPropertyLeft, text);
38 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(cssValue.get());
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
ReferenceFilterBuilder.cpp 88 RefPtrWillBeRawPtr<CSSValue> cssValue = svgElement->presentationAttributeStyle()->getPropertyCSSValue(CSSPropertyColorInterpolationFilters);
89 if (cssValue.get() && cssValue->isPrimitiveValue()) {
90 const CSSPrimitiveValue& primitiveValue = *((CSSPrimitiveValue*)cssValue.get());
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8CSSStyleDeclarationCustom.cpp 40 #include "core/css/CSSValue.h"
206 RefPtrWillBeRawPtr<CSSValue> cssValue = impl->getPropertyCSSValueInternal(static_cast<CSSPropertyID>(propInfo->propID));
207 if (cssValue) {
208 v8SetReturnValueStringOrNull(info, cssValue->cssText(), info.GetIsolate());
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.cpp 351 RefPtrWillBeRawPtr<CSSValue> cssValue = styleDeclaration->propertyAt(i).value();
352 retrieveResourcesForCSSValue(cssValue.get(), document);
356 void PageSerializer::retrieveResourcesForCSSValue(CSSValue* cssValue, Document& document)
358 if (cssValue->isImageValue()) {
359 CSSImageValue* imageValue = toCSSImageValue(cssValue);
366 } else if (cssValue->isFontFaceSrcValue()) {
367 CSSFontFaceSrcValue* fontFaceSrcValue = toCSSFontFaceSrcValue(cssValue);
373 } else if (cssValue->isValueList())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 152 static bool isTransparentColorValue(CSSValue*);
155 static PassRefPtrWillBeRawPtr<CSSValue> backgroundColorInEffect(Node*);
207 RefPtrWillBeRawPtr<CSSValue> value = style->getPropertyCSSValue(m_propertyID);
245 RefPtrWillBeRawPtr<CSSValue> styleValue = style->getPropertyCSSValue(CSSPropertyWebkitTextDecorationsInEffect);
266 virtual PassRefPtrWillBeRawPtr<CSSValue> attributeValueAsCSSValue(Element*) const;
291 RefPtrWillBeRawPtr<CSSValue> value = attributeValueAsCSSValue(element);
292 RefPtrWillBeRawPtr<CSSValue> styleValue = style->getPropertyCSSValue(m_propertyID);
299 if (RefPtrWillBeRawPtr<CSSValue> value = attributeValueAsCSSValue(element))
303 PassRefPtrWillBeRawPtr<CSSValue> HTMLAttributeEquivalent::attributeValueAsCSSValue(Element* element) const
322 virtual PassRefPtrWillBeRawPtr<CSSValue> attributeValueAsCSSValue(Element*) const OVERRIDE
    [all...]

Completed in 82 milliseconds