Searched refs:textDecoration (Results 1 - 12 of 12) sorted by relevance

/external/webkit/WebCore/rendering/style/
H A DStyleVisualData.cpp31 , textDecoration(RenderStyle::initialTextDecoration())
46 , textDecoration(o.textDecoration)
H A DStyleVisualData.h46 textDecoration == o.textDecoration &&
53 unsigned textDecoration : 4; // Text decorations defined *only* by this element.
H A DRenderStyle.cpp502 visual->textDecoration != other->visual->textDecoration ||
H A DRenderStyle.h452 int textDecoration() const { return visual->textDecoration; } function in class:WebCore::RenderStyle
849 void setTextDecoration(int v) { SET_VAR(visual, textDecoration, v); }
/external/webkit/WebCore/editing/
H A DApplyStyleCommand.cpp131 RefPtr<CSSValue> textDecoration = style->getPropertyCSSValue(CSSPropertyTextDecoration); local
133 ASSERT(!textDecorationsInEffect || !textDecoration);
137 textDecoration = textDecorationsInEffect;
141 if (textDecoration && !textDecoration->isValueList())
185 if (RefPtr<CSSValue> textDecoration = style->getPropertyCSSValue(CSSPropertyTextDecoration)) {
186 ASSERT(textDecoration->isValueList());
190 RefPtr<CSSValueList> newTextDecoration = static_cast<CSSValueList*>(textDecoration.get())->copy();
326 RefPtr<CSSValue> textDecoration = style->getPropertyCSSValue(propertID); local
327 if (!textDecoration || !textDecoratio
[all...]
/external/webkit/WebCore/bindings/objc/
H A DDOMCSS.h268 - (NSString *)textDecoration;
269 - (void)setTextDecoration:(NSString *)textDecoration;
H A DDOMCSS.mm1210 - (NSString *)textDecoration
1215 - (void)setTextDecoration:(NSString *)textDecoration
1217 [self setProperty:@"text-decoration" value:textDecoration priority:@""];
/external/webkit/WebCore/css/
H A DCSSComputedStyleDeclaration.cpp617 static PassRefPtr<CSSValue> renderTextDecorationFlagsToCSSValue(int textDecoration) argument
620 if (textDecoration & UNDERLINE)
622 if (textDecoration & OVERLINE)
624 if (textDecoration & LINE_THROUGH)
626 if (textDecoration & BLINK)
1083 return renderTextDecorationFlagsToCSSValue(style->textDecoration());
H A DCSSStyleSelector.cpp1632 style->setTextDecorationsInEffect(style->textDecoration());
1634 style->addToTextDecorationsInEffect(style->textDecoration());
4285 HANDLE_INHERIT_AND_INITIAL(textDecoration, TextDecoration)
/external/webkit/WebCore/rendering/
H A DInlineFlowBox.cpp914 int deco = parent() ? styleToUse->textDecoration() : styleToUse->textDecorationsInEffect();
H A DSVGRootInlineBox.cpp1711 int decorations = style->textDecoration();
H A DRenderObject.cpp2222 int currDecs = curr->style()->textDecoration();

Completed in 74 milliseconds