Home | History | Annotate | Download | only in rendering

Lines Matching refs:decorations

2766 void RenderObject::getTextDecorations(unsigned decorations, AppliedTextDecoration& underline, AppliedTextDecoration& overline, AppliedTextDecoration& linethrough, bool quirksMode, bool firstlineStyle)
2776 currDecs &= decorations;
2779 // Parameter 'decorations' is cast as an int to enable the bitwise operations below.
2782 decorations &= ~TextDecorationUnderline;
2787 decorations &= ~TextDecorationOverline;
2792 decorations &= ~TextDecorationLineThrough;
2802 } while (curr && decorations && (!quirksMode || !curr->node() || (!isHTMLAnchorElement(*curr->node()) && !isHTMLFontElement(*curr->node()))));
2805 if (decorations && curr) {
2808 if (decorations & TextDecorationUnderline) {
2812 if (decorations & TextDecorationOverline) {
2816 if (decorations & TextDecorationLineThrough) {