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

/external/webkit/Source/WebCore/editing/
H A DEditingStyle.cpp829 static void setTextDecorationProperty(CSSMutableStyleDeclaration* style, const CSSValueList* newTextDecoration, int propertyID) argument
831 if (newTextDecoration->length())
832 style->setProperty(propertyID, newTextDecoration->cssText(), style->getPropertyPriority(propertyID));
879 RefPtr<CSSValueList> newTextDecoration = static_cast<CSSValueList*>(textDecoration.get())->copy(); local
880 if (newTextDecoration->removeAll(underline.get()))
882 if (newTextDecoration->removeAll(lineThrough.get()))
886 setTextDecorationProperty(style, newTextDecoration.get(), CSSPropertyTextDecoration);
926 RefPtr<CSSValueList> newTextDecoration = static_cast<CSSValueList*>(textDecoration.get())->copy();
930 newTextDecoration->removeAll(valuesInRefTextDecoration->item(i));
932 setTextDecorationProperty(style, newTextDecoration
[all...]

Completed in 189 milliseconds