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

/external/chromium_org/third_party/WebKit/Source/core/animation/animatable/
H A DAnimatableUnknownTest.cpp47 cssValue = cssValuePool().createIdentifierValue(CSSValueYellow);
48 animatableUnknown = AnimatableUnknown::create(cssValue);
54 RefPtrWillBePersistent<CSSValue> cssValue; member in class:__anon11004::AnimationAnimatableUnknownTest
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.get(), 0.6).get())->toCSSValue());
82 EXPECT_EQ(cssValue, toAnimatableUnknown(AnimatableValue::interpolate(otherAnimatableUnknown.get(), animatableUnknown.get(), 1).get())->toCSSValue());
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSValueTestHelper.h64 inline void PrintTo(const CSSValue& cssValue, ::std::ostream* os, const char* typeName = "CSSValue") argument
66 *os << typeName << "(" << cssValue.cssText().utf8().data() << ")";
69 inline void PrintTo(const CSSPrimitiveValue& cssValue, ::std::ostream* os, const char* typeName = "CSSPrimitiveValue") argument
71 PrintTo(static_cast<const CSSValue&>(cssValue), os, typeName);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleGeneratedImage.cpp40 PassRefPtrWillBeRawPtr<CSSValue> StyleGeneratedImage::cssValue() const function in class:blink::StyleGeneratedImage
H A DStyleFetchedImage.cpp45 PassRefPtrWillBeRawPtr<CSSValue> StyleFetchedImage::cssValue() const function in class:blink::StyleFetchedImage
H A DStyleFetchedImageSet.cpp50 PassRefPtrWillBeRawPtr<CSSValue> StyleFetchedImageSet::cssValue() const function in class:blink::StyleFetchedImageSet
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DSizesCalcParserTest.cpp37 RefPtrWillBeRawPtr<CSSValue> cssValue = CSSParser::parseSingleValue(CSSPropertyLeft, text); local
38 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(cssValue.get());
H A DCSSPropertyParser.cpp1549 static bool parseBackgroundClip(CSSParserValue* parserValue, RefPtrWillBeRawPtr<CSSValue>& cssValue) argument
1553 cssValue = cssValuePool().createIdentifierValue(parserValue->id);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DReferenceFilterBuilder.cpp88 RefPtrWillBeRawPtr<CSSValue> cssValue = svgElement->presentationAttributeStyle()->getPropertyCSSValue(CSSPropertyColorInterpolationFilters); local
89 if (cssValue.get() && cssValue->isPrimitiveValue()) {
90 const CSSPrimitiveValue& primitiveValue = *((CSSPrimitiveValue*)cssValue.get());
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8CSSStyleDeclarationCustom.cpp206 RefPtrWillBeRawPtr<CSSValue> cssValue = impl->getPropertyCSSValueInternal(static_cast<CSSPropertyID>(propInfo->propID)); local
207 if (cssValue) {
208 v8SetReturnValueStringOrNull(info, cssValue->cssText(), info.GetIsolate());
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPageSerializer.cpp351 RefPtrWillBeRawPtr<CSSValue> cssValue = styleDeclaration->propertyAt(i).value(); local
352 retrieveResourcesForCSSValue(cssValue.get(), document);
356 void PageSerializer::retrieveResourcesForCSSValue(CSSValue* cssValue, Document& document) argument
358 if (cssValue->isImageValue()) {
359 CSSImageValue* imageValue = toCSSImageValue(cssValue);
366 } else if (cssValue->isFontFaceSrcValue()) {
367 CSSFontFaceSrcValue* fontFaceSrcValue = toCSSFontFaceSrcValue(cssValue);
373 } else if (cssValue->isValueList()) {
374 CSSValueList* cssValueList = toCSSValueList(cssValue);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditingStyle.cpp1269 RefPtrWillBeRawPtr<CSSValue> cssValue = m_mutableStyle->getPropertyCSSValue(CSSPropertyFontSize); local
1270 if (!cssValue || !cssValue->isPrimitiveValue())
1272 return legacyFontSizeFromCSSValue(document, toCSSPrimitiveValue(cssValue.get()),
1653 bool isTransparentColorValue(CSSValue* cssValue) argument
1655 if (!cssValue)
1657 if (!cssValue->isPrimitiveValue())
1659 CSSPrimitiveValue* value = toCSSPrimitiveValue(cssValue);
1667 RefPtrWillBeRawPtr<CSSValue> cssValue = style->getPropertyCSSValueInternal(CSSPropertyBackgroundColor); local
1668 return isTransparentColorValue(cssValue
1673 RefPtrWillBeRawPtr<CSSValue> cssValue = style->getPropertyCSSValue(CSSPropertyBackgroundColor); local
[all...]

Completed in 196 milliseconds