Searched defs:textDecoration (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DCSSComputedStyleDeclaration.cpp713 static PassRefPtr<CSSValue> renderTextDecorationFlagsToCSSValue(int textDecoration, CSSPrimitiveValueCache* primitiveValueCache) argument
716 if (textDecoration & UNDERLINE)
718 if (textDecoration & OVERLINE)
720 if (textDecoration & LINE_THROUGH)
722 if (textDecoration & BLINK)
1324 return renderTextDecorationFlagsToCSSValue(style->textDecoration(), primitiveValueCache);
/external/webkit/Source/WebCore/editing/
H A DEditingStyle.cpp783 RefPtr<CSSValue> textDecoration = style->getPropertyCSSValue(CSSPropertyTextDecoration); local
785 ASSERT(!textDecorationsInEffect || !textDecoration);
789 textDecoration = textDecorationsInEffect;
793 if (textDecoration && !textDecoration->isValueList())
874 RefPtr<CSSValue> textDecoration = style->getPropertyCSSValue(CSSPropertyTextDecoration); local
875 if (textDecoration && textDecoration->isValueList()) {
879 RefPtr<CSSValueList> newTextDecoration = static_cast<CSSValueList*>(textDecoration.get())->copy();
922 RefPtr<CSSValue> textDecoration local
[all...]
/external/webkit/Source/WebCore/rendering/style/
H A DRenderStyle.h486 int textDecoration() const { return visual->textDecoration; } function in class:WebCore::RenderStyle
936 void setTextDecoration(int v) { SET_VAR(visual, textDecoration, v); }

Completed in 88 milliseconds