Searched refs:shadowData (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/rendering/style/
H A DRenderStyle.cpp1001 void RenderStyle::setTextShadow(PassOwnPtr<ShadowData> shadowData, bool add) argument
1003 ASSERT(!shadowData || (!shadowData->spread() && shadowData->style() == Normal));
1007 rareData->textShadow = shadowData;
1011 shadowData->setNext(rareData->textShadow.release());
1012 rareData->textShadow = shadowData;
1015 void RenderStyle::setBoxShadow(PassOwnPtr<ShadowData> shadowData, bool add) argument
1019 rareData->m_boxShadow = shadowData;
1023 shadowData
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DSVGCSSStyleSelector.cpp579 OwnPtr<ShadowData> shadowData = adoptPtr(new ShadowData(location, blur, 0, Normal, false, color.isValid() ? color : Color::transparent)); local
580 svgstyle->setShadow(shadowData.release());
H A DStyleResolver.cpp2470 OwnPtr<ShadowData> shadowData = adoptPtr(new ShadowData(IntPoint(x, y), blur, spread, shadowStyle, id == CSSPropertyWebkitBoxShadow, color.isValid() ? color : Color::transparent));
2472 state.style()->setTextShadow(shadowData.release(), i.index()); // add to the list if this is not the first entry
2474 state.style()->setBoxShadow(shadowData.release(), i.index()); // add to the list if this is not the first entry
H A DCSSComputedStyleDeclaration.cpp983 ShadowData shadowData = ShadowData(dropShadowOperation->location(), dropShadowOperation->stdDeviation(), 0, Normal, false, dropShadowOperation->color()); local
984 filterValue->append(valueForShadow(&shadowData, CSSPropertyTextShadow, style));

Completed in 96 milliseconds