Home | History | Annotate | Download | only in rendering

Lines Matching refs:decorations

3159 void RenderObject::getTextDecorations(unsigned decorations, AppliedTextDecoration& underline, AppliedTextDecoration& overline, AppliedTextDecoration& linethrough, bool quirksMode, bool firstlineStyle)
3169 currDecs &= decorations;
3172 // Parameter 'decorations' is cast as an int to enable the bitwise operations below.
3175 decorations &= ~TextDecorationUnderline;
3180 decorations &= ~TextDecorationOverline;
3185 decorations &= ~TextDecorationLineThrough;
3195 } while (curr && decorations && (!quirksMode || !curr->node() || (!isHTMLAnchorElement(*curr->node()) && !isHTMLFontElement(*curr->node()))));
3198 if (decorations && curr) {
3201 if (decorations & TextDecorationUnderline) {
3205 if (decorations & TextDecorationOverline) {
3209 if (decorations & TextDecorationLineThrough) {